[R-es] Error RStudio

2023-06-17 Thread Javier Gómez Gonzalez
Hola a todos Desde que instalé la última versión de RStudio la 2023.06.0-421 para Windows me aparece el siguiente error : Error in exists(cacheKey, where = .rs.WorkingDataEnv, inherits = FALSE) : invalid first argument Error in assign(cacheKey, frame, .rs.CachedDataEnv) : attempt to use

Re: [R-es] Supuestos de una ANOVA

2023-06-17 Thread Proyecto R-UCA
Buenas, La instrucción plot admite un parámetro which, su valor por defecto es c(1, 2, 3, 5), que son los cuatro gráficos que salen por defecto. Usando which = 2 obtienes únicamente el qqplot. Las observaciones leverage son observaciones que tienen una gran influencia en los resultados del

Re: [R] inconsistency in mclapply.....

2023-06-17 Thread Ivan Krylov
В Sat, 17 Jun 2023 18:54:43 + akshay kulkarni пишет: > 1. I was working on a two core machine just to test the > code...tomorrow will be switching to a 48 core machine. Should I > again download the latest openblas from ropenblas() or do you suggest > testing the native openblas that is

Re: [R] inconsistency in mclapply.....

2023-06-17 Thread akshay kulkarni
Dear Ivan, I am reopening this thread because there are some new developments. I have switched to ubuntu and have used ropenblas() in ropenblas package to download the latest openblas (it is a version of skylake as you can see below in sessionInfo()). mclapply() is working fine

Re: [R] warnng to an error....

2023-06-17 Thread akshay kulkarni
Dear Bert, Duncan's theory is workingprobably the same as yours... THanking you, Yours sincerely, AKSHAY M KULKARNI From: Bert Gunter Sent: Saturday, June 17, 2023 11:28 PM To: akshay kulkarni Cc: R help Mailing list Subject: Re: [R] warnng

Re: [R] warnng to an error....

2023-06-17 Thread akshay kulkarni
Dear Duncan, THankls a lot... THanking you, Yours sincerely, AKSHAY M KULKARNI From: Duncan Murdoch Sent: Saturday, June 17, 2023 11:36 PM To: akshay kulkarni ; R help Mailing list Subject: Re: [R] warnng to an error On 17/06/2023

Re: [R] warnng to an error....

2023-06-17 Thread Duncan Murdoch
On 17/06/2023 1:16 p.m., akshay kulkarni wrote: Dear members, I have the following code: FUN(OHLCDataEP[[63]]) Error in (class(x) == "xts") || (class(x) == "zoo") : 'length = 2' in coercion to 'logical(1)' traceback() 2: ygix(x, "c") at #9 1:

Re: [R] warnng to an error....

2023-06-17 Thread Bert Gunter
What is class(x) ?? I think you need to (re?) learn about S3 classes, which can in general be vectors. See ?class (the S3 portion) or any tutorial on S3 classes in R. I have no idea what you are trying to do, but I *suspect* it may be accomplished through S3 inheritance rather than changing the

Re: [R] warnng to an error....

2023-06-17 Thread akshay kulkarni
Dear members, AN update: I have changed the if clause to: if(class(x)[1] == "xts") || class(x)[2] == "zoo") {code} but am bootless. PLease help... THanking you, Yours sincerely, AKSHAY M KULKARNI From: R-help on behalf of akshay

[R] warnng to an error....

2023-06-17 Thread akshay kulkarni
Dear members, I have the following code: > FUN(OHLCDataEP[[63]]) Error in (class(x) == "xts") || (class(x) == "zoo") : 'length = 2' in coercion to 'logical(1)' > traceback() 2: ygix(x, "c") at #9 1: FUN(OHLCDataEP[[63]]) > class(OHLCDataEP[[63]]) [1] "xts" "zoo" The

Re: [R-es] Seleccionar valores consecutivos en un dataframe

2023-06-17 Thread Proyecto R-UCA
Buenas, Creo que esto se parece a lo estás buscando, un saludo. > ejemplo <- read.csv('ejemplo.csv', header=TRUE, sep = ' ') > head(ejemplo) dia p lim trat sp germ estac 1 2019-11-07 0.000 brown gfgs aege FALSE fall 2 2019-11-08 0.000 brown gfgs aege FALSE fall 3 2019-11-09