[R] Problem in R code

2023-11-09 Thread Crown Flame
Good afternoon, I have been working on my thesis project on the topic "Urban Heat Island Pattern in India". To achieve the results I am applying a* two-dimensional Gaussian fit* on an LST raster of 1 km spatial resolution but I am facing two errors in the following code. library(raster) LST <- ras

Re: [R] Dependency errors for package pracma

2023-11-09 Thread Uwe Ligges
On 09.11.2023 06:42, Hans W wrote: I tried to update my package {pracma} on CRAN from 2.4.2 (2022-09-21) to version 2.4.4 (2023-11-08). This package reverse depends / imports / suggests on 350 packages on CRAN and 25 packages on Bioconductor. The only changes are small corrections on some hel

[R] Why Rprofile.site is not built with manual installation of R devel in linux?

2023-11-09 Thread Iago Giné Vázquez
Hi all, I downloaded R-devel as explicited in https://developer.r-project.org/SVNtips.html Then, I tried to install it through instructions in https://cran.r-project.org/doc/manuals/r-devel/R-admin.html#Installation (taking into account also https://stat.ethz.ch/pipermail/r-devel/2016-May/07277

Re: [R] Dependency errors for package pracma

2023-11-09 Thread Hans W
What really interests me: With all those strict checking procedures, how is it possible that the new 'Matrix' version got accepted on CRAN? I think this happened twice to me before, and it takes a lot of time to check package dependencies that turn out to be not dependent -- more time than checki

Re: [R] Problem in R code

2023-11-09 Thread Ivan Krylov
В Wed, 8 Nov 2023 16:03:15 +0530 Crown Flame пишет: > for(i in 1:8) > { > LST_city <- extract(LST, c(lon[i],lat[i]), fun = mean, buffer = > 1, na.rm = TRUE) #error > } Three things you might need to change: 1. You are trying to assign the output of extract() to the same variable LST_cit

Re: [R] Dependency errors for package pracma

2023-11-09 Thread Martin Maechler
> Hans W > on Thu, 9 Nov 2023 12:22:52 +0100 writes: > What really interests me: > With all those strict checking procedures, how is it possible that the > new 'Matrix' version got accepted on CRAN? There > 2000 reverse dependencies for Matrix. We have had some (in thems

Re: [R] Why Rprofile.site is not built with manual installation of R devel in linux?

2023-11-09 Thread Jeff Newmiller via R-help
No clue. Tip: R-devel is the mailing list for anything related to development versions of R. Off-topic here. On November 9, 2023 2:59:44 AM PST, "Iago Giné Vázquez" wrote: >Hi all, > >I downloaded R-devel as explicited in >https://developer.r-project.org/SVNtips.html >Then, I tried to install