Re: [R] Getting "Error in ect, plot.new has not been called yet" despite grouping plot call

2022-10-06 Thread Deramus, Thomas Patrick
Truly appreciate it Bill. Will try to make something more trimmed down in the future, but unfortunately have to admit I am more of an R neophyte than I would like to be. From: Joshua Ulrich Sent: Thursday, October 6, 2022 11:26 AM To: Bill Dunlap Cc: Deramus,

Re: [R] (no subject)

2022-10-06 Thread Ivan Krylov
Hi Julie, В Thu, 6 Oct 2022 10:58:51 -0400 Julie Coughlin пишет: > Can you send me a later version of r programming to use on my macos > version 10.12.6? The newest r program is not compatible with my > macbook. Since R 4.0.0, the official builds of R require macOS ≥ 10.13. The Homebrew

Re: [R] (no subject)

2022-10-06 Thread Rui Barradas
Hello, I am not a Mac user but have you tried the official R downloads web site, The Comprehensive R Archive Network - CRAN? Here is the link: https://cran.r-project.org/ Hope this helps, Rui Barradas Às 15:58 de 06/10/2022, Julie Coughlin escreveu: Hi , Can you send me a later version of

[R] (no subject)

2022-10-06 Thread Julie Coughlin
Hi , Can you send me a later version of r programming to use on my macos version 10.12.6? The newest r program is not compatible with my macbook. Thank you, Julie :) [[alternative HTML version deleted]] __ R-help@r-project.org mailing list --

Re: [R] Getting "Error in ect, plot.new has not been called yet" despite grouping plot call

2022-10-06 Thread Joshua Ulrich
On Thu, Oct 6, 2022 at 9:44 AM Bill Dunlap wrote: > > Here is how you could have made an example that helpers could easily run. > It also includes the fix. > > f <- function(print.it = FALSE) { >pdf(file.pdf <- tempfile(fileext=".pdf")) >series <- as.xts(setNames(sin(seq(0,10,by=.1)), >

Re: [R] Fixed effect model: different estimation approaches with R return different results

2022-10-06 Thread Valerio Leone Sciabolazza
Thank you Bert, I see your point. The problem is that I am not sure if this is a statistical issue - i.e., there is something wrong with my procedure - or, in a manner of speaking, a software issue: e.g. lm is not expected to return the same estimates for different approaches because of the way in

Re: [R] Getting "Error in ect, plot.new has not been called yet" despite grouping plot call

2022-10-06 Thread Bill Dunlap
Here is how you could have made an example that helpers could easily run. It also includes the fix. f <- function(print.it = FALSE) { pdf(file.pdf <- tempfile(fileext=".pdf")) series <- as.xts(setNames(sin(seq(0,10,by=.1)), seq(as.Date("2022-10-06"),by="weeks",len=101))) p <-

Re: [R] Fixed effect model: different estimation approaches with R return different results

2022-10-06 Thread Bert Gunter
You could get lucky here, but strictly speaking, this list is about R programming and statistical issues are typically off topic Someone might respond privately, though. Cheers, Bert On Thu, Oct 6, 2022 at 4:24 AM Valerio Leone Sciabolazza < sciabola...@gmail.com> wrote: > Good morning, > I am

Re: [R] R version 4.2.1 install.packages does not work with IE proxy setting

2022-10-06 Thread PIKAL Petr
Hallo Howard Thanks, for the time being the previous workaround with wininet options works for me. I will wait for the new R version and then try to persuade our IT to make relevant changes. Cheers Petr > -Original Message- > From: Howard, Tim G (DEC) > Sent: Thursday, October 6, 2022

[R] Fixed effect model: different estimation approaches with R return different results

2022-10-06 Thread Valerio Leone Sciabolazza
Good morning, I am trying to use R to estimate a fixed effects model (i.e., a panel regression model controlling for unobserved time-invariant heterogeneities across agents) using different estimation approaches (e.g. replicating xtreg from Stata, see e.g.

Re: [R] R version 4.2.1 install.packages does not work with IE proxy setting

2022-10-06 Thread Howard, Tim G (DEC) via R-help
Petr, You also might want to check out the bug reported here: https://bugs.r-project.org/show_bug.cgi?id=18379 it was fixed and the last two comments discuss how to handle it in Windows: you add a new User Environment Variable: R_LIBCURL_SSL_REVOKE_BEST_EFFORT and set it to TRUE This fix is

Re: [R] Getting "Error in ect, plot.new has not been called yet" despite grouping plot call

2022-10-06 Thread Deramus, Thomas Patrick
I had to place it right before the title and abline functions like so: for (i in 1:length(Participant_Word_Task)){ success_series <- xts(filter(Participant_Word_Task[[i]], GameEndReason == "TIMER_UP")$NumberOfSuccesfulWords , order.by=as.POSIXct(filter(Participant_Word_Task[[i]],

Re: [R] Getting "Error in ect, plot.new has not been called yet" despite grouping plot call

2022-10-06 Thread Deramus, Thomas Patrick
Odd. Thought I had attached it. Would love to go that route, but the problem is a lot of the sub-bits are actually dependent on the values of the timeseries analysis, which has its own dependencies.. Would using the following link to download the excel file help at all?

Re: [R] Getting "Error in ect, plot.new has not been called yet" despite grouping plot call

2022-10-06 Thread Deramus, Thomas Patrick
Hi Rolf. I followed your suggestion (though it's probably not as trimmed as it could be), but the problem unfortunately persists. Does this make it any clearer or still too many moving parts to make sense of? rm(list = ls(all.names = TRUE)) #will clear all objects includes hidden objects.

Re: [R] Help installing devtools plus other packages in R terminal

2022-10-06 Thread Ivan Krylov
On Wed, 5 Oct 2022 20:02:02 + "Rhon Calderon, Eric" wrote: > automake found. Running autoupdate and autogen.sh. <...> > + libtoolize --copy > autogen.sh: line 43: libtoolize: command not found Since you have automake installed, you also need libtool

Re: [R] Help installing devtools plus other packages in R terminal

2022-10-06 Thread Andrew Simmons
To install the packages from source, you need to install make, gcc, and g++: ⁠sudo apt install make⁠ ⁠sudo apt install gcc⁠ ⁠sudo apt install g++ then try installing them again On Thu, Oct 6, 2022 at 2:54 AM Rhon Calderon, Eric wrote: > > Hi, > > I am using R in my HPC terminal. After many

[R] Help installing devtools plus other packages in R terminal

2022-10-06 Thread Rhon Calderon, Eric
Hi, I am using R in my HPC terminal. After many tries, I was able to install and exec successfully R on my HPC but now I cannot install devtools and other dependencies. I need some of theses packages to install some others from bioconductor. I was wondering if anybody has a solution. The