Displaying 6 results from an estimated 6 matches for "date_breaks".
2016 Sep 06
2
Ayuda con gráfico típico de histograma más linea
...s <- as.numeric(gsub("\\.", "", as.character(ft$Miles)))
> ft$Share <- as.numeric(gsub("\\,", ".", as.character(ft$Share)))
>
> ggbar <- ggplot(ft, aes(x = hora, y = frec)) +
> geom_area(fill= "gray") +
> scale_x_datetime(date_breaks = "5 mins", date_labels = "%H:%M") +
> theme(panel.background = element_rect(fill = "white")) +
> scale_y_continuous(limits=c(0,1500)) +
> labs(x = "Minutos", y = "Tweets") + # Etiquetas o títulos de los ejes
> theme(axis.text.x=...
2016 Sep 03
2
Ayuda con gráfico típico de histograma más linea
...";", dec = ",")
> datos$Miles <- as.numeric(gsub("\\.", "", as.character(datos$Miles)))
>
> datos$hora <- strptime(datos$hora, format = "%H:%M")
>
> ggplot(datos, aes(x = hora, y = Miles)) + geom_line() +
> scale_x_datetime(date_breaks = "15 mins", date_labels = "%H:%M")
>
>
> Además, en aes no hay que hacer referencia a la tabla. Expresiones como
>
> ggplot(datos, aes(x = datos$hora, y = datos$Miles)) + ...
>
> son innecesariamente redundantes.
>
> Salud,
>
> Carlos J. Gil Bel...
2016 Sep 03
2
Ayuda con gráfico típico de histograma más linea
...sv", header = T, sep = ";", dec = ",")
datos$Miles <- as.numeric(gsub("\\.", "", as.character(datos$Miles)))
datos$hora <- strptime(datos$hora, format = "%H:%M")
ggplot(datos, aes(x = hora, y = Miles)) + geom_line() +
scale_x_datetime(date_breaks = "15 mins", date_labels = "%H:%M")
Además, en aes no hay que hacer referencia a la tabla. Expresiones como
ggplot(datos, aes(x = datos$hora, y = datos$Miles)) + ...
son innecesariamente redundantes.
Salud,
Carlos J. Gil Bellosta
http://www.datanalytics.com
El 3 de septie...
2023 Jan 13
1
Customise Plot tick label on time series plot using date series
...els,
# here monthly breaks and the same labels format
# with more axis labels they need to be rotated in order to be readable
# (as a side note I have displayed the axis labels in one instruction only)
autoplot(dt_ts) +
labs(x = "Daily", y = "Charge counts") +
scale_x_date(date_breaks = "1 month", date_labels = "%b %Y") +
theme(axis.text.x = element_text(angle = 60, vjust = 1, hjust = 1))
Hope this helps,
Rui Barradas
2023 Jan 13
1
Customise Plot tick label on time series plot using date series
Hi,
I would like to customise my date series on the plot. I tried this:
dt_ts <- ts(dt)
autoplot(dt_ts[,2]) + ylab("Charge counts") + xlab("Daily")
but the label is not the date series.
Tqvm for any help given.
> dput(dt)
structure(list(time = c("1/1/2014", "2/1/2014", "3/1/2014", "4/1/2014",
"5/1/2014",
2016 Sep 02
2
Ayuda con gráfico típico de histograma más linea
Y bueno, algo más bonito sí que queda con ggplot...
#---------------
datIn <- read.csv("pec.csv", header = TRUE, sep = ";", dec = ",")
library(ggplot2)
lab_x_idx <- c(1, round(nrow(datIn)/2, 0), nrow(datIn))
lab_x <- as.vector(datIn$hora[ lab_x_idx])
fre_gg <- ggplot( datIn, aes( x = 1:nrow(datIn), y = frec)) +
geom_bar(stat =