[R] Rate of Reading into R from net

2022-11-14 Thread Nick Wray
Hello I am trying read nc rainfall files directly from the UK centre for hydrology and ecology website - hourly:about 300Mb https://catalogue.ceh.ac.uk/datastore/eidchub/fc9423d6-3d54-467f-bb2b-fc7357a3941f/ and daily about 90Mb https://catalogue.ceh.ac.uk/datastore/eidchub/2ab15bf0-ad08-415c-ba6

Re: [R] Rate of Reading into R from net

2022-11-14 Thread Ivan Krylov
В Mon, 14 Nov 2022 13:04:31 + Nick Wray пишет: > nc_data<-nc_open(" > https://catalogue.ceh.ac.uk/datastore/eidchub/2ab15bf0-ad08-415c-ba64-831168be7293/precip/chess-met_precip_gb_1km_daily_19610301-19610331.nc > ") > > However, when I run this I don't get an error message but R just sits >

Re: [R] Rate of Reading into R from net

2022-11-14 Thread Enrico Schumann
On Mon, 14 Nov 2022, Nick Wray writes: > Hello I am trying read nc rainfall files directly from the UK centre for > hydrology and ecology website - > hourly:about 300Mb > https://catalogue.ceh.ac.uk/datastore/eidchub/fc9423d6-3d54-467f-bb2b-fc7357a3941f/ > and daily about 90Mb > https://catalogu

Re: [R] Logistic regression for large data

2022-11-14 Thread Bill Dunlap
summary(Base) would show if one of columns of Base was read as character data instead of the expected numeric. That could cause an explosion in the number of dummy variables, hence a huge design matrix. -Bill On Fri, Nov 11, 2022 at 11:30 PM George Brida wrote: > Dear R users, > > I have a d

[R] ubuntu 22

2022-11-14 Thread Ragia .
dear group , cant install r base into ubuntu 22. the msg is The following packages have unmet dependencies: r-base-core : Depends: libicu70 (>= 70.1-1~) but it is not installable Recommends: r-recommended but it is not going to be installed Recommends: r-doc-html

[R] unmet dependency for r-base-core ... was Re: ubuntu 22

2022-11-14 Thread David Winsemius
On 11/14/22 15:22, Ragia . wrote: >dear group , > cant install r base into ubuntu 22. > the msg is > The following packages have unmet dependencies: > r-base-core : Depends: libicu70 (>= 70.1-1~) but it is not installable Have you tried looking up the package that would contain libicu70? 

Re: [R] ubuntu 22

2022-11-14 Thread Jeff Newmiller
Seems like a problem with your system package manager repository configuration. Maybe better pursued on the R-sig-debian mailing list (Ubuntu is derived from Debian). Be sure to describe exactly what you did (e.g. which web page instructions did you follow). On November 14, 2022 3:22:51 PM PST,

[R] Importing data with value labels into R

2022-11-14 Thread Maryam Iraniparast
Hello! I want to read SPSS data into R and I want to carry the value labels with my dataset. Based on my research, only Stata file can transfer the value labels to R (It is easy to save SPSS data with Stata format). The last time I did that successfully, I was using R4.2.1 and the following cod

[R] Rare behaviour for nlme::reStruct example and question about ?lmeObject

2022-11-14 Thread IAGO GINÉ VÁZQUEZ
Dear developers, When I run the example code in the help of reStruct, I get > library(nlme) > rs1 <- reStruct(list(Dog = ~day, Side = ~1), data = Pixel) > rs1 Uninitialized random effects structure > str(rs1) List of 2 $ Side:Error in pdMatrix.pdSymm(x) : cannot extract matrix from an uniniti

Re: [R] Importing data with value labels into R

2022-11-14 Thread IAGO GINÉ VÁZQUEZ
Hello Maryam, The haven function for reading Stata files is read_dta (not read.dta!!!). May this be your issue? Iago De: R-help de part de Maryam Iraniparast Enviat el: dilluns, 14 de novembre de 2022 19:07 Per a: r-help@r-project.org Tema: [R] Importing dat