Displaying 2 results from an estimated 2 matches for "mes_aaa".
2020 Sep 27
2
GRÁFICO DE BARRAS COMPARATIVO VARIOS AÑOS
...ERCICIO EN CURS
Orden_barras <- c("ENE","FEB","MAR","ABR","MAY","JUN",
                  "JUL","AGO","SEP","OCT","NOV","DIC") # VECTOR ORD BARRAS
ggplot(Diario_S2, aes(x=factor(mes_AAA, level = Orden_barras),
                      y=USD_HAB))+                     # ASIGNAR VARIABLES
        geom_bar(stat="identity", width=0.7,           # ANCHO BARRAS
                 colour="grey", fill="darkred", # COLOR (borde relleno)
                 position =...
2020 Sep 23
2
ORDEN GRÁFICO POR MESES
Hola,
  Estoy haciendo un gráfico con:
#############################################################################
## GRAFICO BARRAS : VALORES AL DEBE MENSUALIZADO
ggplot(Diario_S2, aes(x=mes_AAA, by = MES , y=ARS_DEB))+   # ASIGNAR
VARIABLES
        geom_bar(stat="identity", width=0.7,      # ANCHO BARRAS
                 colour="grey", fill="darkgreen", # ASPECTO (borde y
relleno)
                 position = "dodge")+
        scale_fill_brewer(palet...