Re: [R-es] GRAFICO DE BARRAS

2022-05-09 Por tema Jose Betancourt Bethencourt
ENVEZ DE SUM USÉ MEDIAN QUE ES LO QUE ME CONVIENE, GRACIAS!! library(readxl) ta <- read_excel("C:/Users/betan/Desktop/presiones.xlsx") attach(ta) ' ta %>% pivot_longer(cols = names(ta)) %>% group_by(name) %>% summarise(median(value)) %>% ungroup() %>% mutate( valor = `median(value)`)

Re: [R-es] GRAFICO DE BARRAS

2022-05-09 Por tema Jose Betancourt Bethencourt
NO ME RESULTÓ gRACIAS DE TODOS MODOS El 9/5/22, Juan Abasolo escribió: > Seguro que te lo saben resolver muchísimo más elegante. > Pero si te sirve para desatascarte, acá mi ejercicio > > Suerte > > library(tidyverse) > dtk <- read.csv('data/raw/presiones.csv', > sep = ',', dec =