Re: [R-es] Resultado de la consola como un tibble

2020-10-18 Thread Jimmy Erney Reyes Velasco
¡MUCHAS GRACIAS! Carlos me ha servido bastante. esto es excelente saludos Jimmy El dom., 18 de oct. de 2020 a la(s) 05:32, Carlos Ortega ( c...@qualityexcellence.es) escribió: > Hola, > > Bueno, puedes hacer el cálculo de una forma mucho más compacta y rápida. > Esta forma es especialmente

Re: [R] Help in R code

2020-10-18 Thread Martin Møller Skarbiniks Pedersen
I think you first should read and understand this: https://stackoverflow.com/help/minimal-reproducible-example and https://stackoverflow.com/help/how-to-ask On Sun, Oct 18, 2020, 11:57 Faheem Jan via R-help wrote: > Good morning, Please help me to code this code in R. > I working in the

[R] Help in R code

2020-10-18 Thread Faheem Jan via R-help
Good morning,  Please help me to code this code in R. I working in the multivariate time series data, know my objective is that to one year forecast of the hourly time series data, using first five as a training set and the remaining one year as validation. For this  I transform the the data

Re: [R-es] Resultado de la consola como un tibble

2020-10-18 Thread Carlos Ortega
Hola, No hace falta (en este caso) capturarlo de la consola. El resultado de la función apply se puede capturar y procesar. > data("mtcars") > # Mtcars_matriz <- as.matrix(mtcars) > res_out <- apply(mtcars, MARGIN =2, FUN = shapiro.test) > > > res_df <- as.data.frame(unlist(res_out)) >