Re: [R] Cook's distance for least absolute deviation (lad) regressions

2022-03-20 Thread Jim Lemon
Hi Kelly, Perhaps the best place to look is the "car" package. There is a somewhat confusing reference in the "cookd" function help page to the "cooks.distance" function in the "base" package that doesn't seem to be there. Whether this is the case or not, I think you can still use the "cookd"

Re: [R] Naming files within R code

2022-03-20 Thread Rui Barradas
Hello, You can read in the files in a `lapply` loop, assign the result to a list, say df_list, and names(df_list) <- c("tay","forth","don") list2env(df_list, envir = globalenv()) This creates 3 data.frames with those names in the global environment. Hope this helps, Rui Barradas Às 22:02

Re: [R] Bug in R-install -- sysdata.rda

2022-03-20 Thread Jeff Newmiller
Please don't post to multiple lists at once... this is widely frowned on by many mailing lists. If you simply read the Posting Guide it will inform you that you should post questions "related to compiling" on r-devel. I also recommend that you read the R Administration and Installation manual,

[R] Naming files within R code

2022-03-20 Thread Nick Wray
HelloI have data from various Scottish river catchments in the form of csv files. I want to be able to download the files in turn and refer to each one by an assigned name from a vector of names, but within R. So, for example, if my vector of names is c("tay","forth","don") I want to tell R

Re: [R] Bug in R-install -- sysdata.rda

2022-03-20 Thread Manu goswami
Dear R Developers, Building R from source has never been straight forward but now it has become impossible. Even when one compiles and links all files Still below error is stopping completing build process. This certainly is deplorably mischievous. Please support to resolve immediately. Cygwin

Re: [R] Can browseURL open a lynx browser?

2022-03-20 Thread Viechtbauer, Wolfgang (SP)
Dear Ashim, If you really want to use lynx, then you need to open up a new terminal to make this work. For example, this will do: browseURL("http://www.r-project.org","xterm -e lynx") But this will open up a new terminal for each call to browseURL(). Best, Wolfgang >-Original

Re: [R] Combining data.frames

2022-03-20 Thread Rui Barradas
Hello, The two merge below give identical results. Maybe there was something in your R session? df3 <- merge(df1, df2, by = c("date", "geo_hash" ), all = TRUE) df3b <- merge(df1, df2, all = TRUE) identical(df3, df3b) #[1] TRUE Hope this helps, Rui Barradas Às 02:05 de 20/03/2022, Jeff

Re: [R] Can browseURL open a lynx browser?

2022-03-20 Thread Ashim Kapoor
Dear Sir, > You mention reading the ?browseURL help page, but seem to make no reference > to the available options for invoking the browser of your choice. If the > browser you choose isn't behaving when you do this, then isn't this a > question for a forum related to that browser? OK. Thank

Re: [R] Can browseURL open a lynx browser?

2022-03-20 Thread Ashim Kapoor
Dear Sir, > I haven't used lynx in a while, but > > browseURL("http://www.google.com;, browser = "elinks -remote") > > works for me as long as an elinks session is already running. The above elinks incantation is working for me. Many thanks, Ashim __

Re: [R] Can browseURL open a lynx browser?

2022-03-20 Thread Deepayan Sarkar
On Sun, Mar 20, 2022 at 12:39 PM Ashim Kapoor wrote: > > Dear all, > > I wish to do : > > browseURL("http://www.google.com","lynx;) > > But this is not opening the lynx browser. I am able to open lynx from > the Debian command line and lynx is on the PATH. I haven't used lynx in a while, but

Re: [R] Can browseURL open a lynx browser?

2022-03-20 Thread Jeff Newmiller
You mention reading the ?browseURL help page, but seem to make no reference to the available options for invoking the browser of your choice. If the browser you choose isn't behaving when you do this, then isn't this a question for a forum related to that browser? On March 20, 2022 12:09:05 AM