изменить масштаб двухосного графика Y - ggplot2 - PullRequest
0 голосов
/ 11 июня 2018

Желая изучить влияние погоды на дорожное движение, я хотел бы построить график с осью х, месяцами, осью Y справа, температурой и осадками и осью Y слева, количество автомобилей.

Однако, когда я генерирую этот график, осадки и температуры исчезают, так как масштаб оси количества автомобилей слишком важен (от 0e + 00 до 3e + 06),Можно ли иметь для правой оси Y градацию в диапазоне от 0 до 30, а для оси Y слева - другую градацию?

Для лучшей наглядности ниже приведен пример кода.

structure(list(SOUNAME = structure(c(1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L), .Label = "WATERFORD (TYCOR)", class = "factor"), year_month = structure(c(1L,
1L, 1L, 1L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 5L,
5L, 5L, 5L, 6L, 6L, 6L, 6L), .Label = c("2013-03", "2013-05",
"2013-08", "2013-09", "2013-10", "2013-12"), class = "factor"),
    pre_type = structure(c(4L, 1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L,
    1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L, 1L, 2L, 3L
    ), .Label = c("HEAVY", "LIGHT", "MEDIUM", "NONE"), class = "factor"),
    pre_value = c(17L, 1L, 7L, 3L, 16L, 1L, 10L, 4L, 17L, 1L,
    8L, 5L, 12L, 1L, 11L, 6L, 7L, 3L, 16L, 5L, 6L, 2L, 20L, 3L
    ), tem_type = structure(c(4L, 1L, 2L, 3L, 4L, 1L, 2L, 3L,
    4L, 1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L, 1L, 2L,
    3L), .Label = c("COLD", "HOT", "MEDIUM", "V_COLD"), class = "factor"),
    tem_value = c(0L, 15L, 0L, 16L, 0L, 28L, 3L, 0L, 0L, 0L,
    30L, 0L, 0L, 12L, 16L, 0L, 0L, 30L, 1L, 0L, 0L, 26L, 0L,
    5L), cnt_vehicle = c(NA, 2822180, NA, NA, NA, 3142510, NA,
    NA, NA, 3372690, NA, NA, NA, 3321950, NA, NA, NA, 3352332,
    NA, NA, NA, 3051846, NA, NA), x = c(1L, 1L, 1L, 1L, 2L, 2L,
    2L, 2L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 6L,
    6L, 6L, 6L)), .Names = c("SOUNAME", "year_month", "pre_type",
"pre_value", "tem_type", "tem_value", "cnt_vehicle", "x"), row.names = c(NA,
-24L), class = "data.frame")

ggplot(data = w_complet_2013, aes(x = x, y = pre_value, fill = pre_type), stat = "identity") +
  scale_x_continuous(breaks=1:6, labels=unique(w_complet_2013$year_month)) +
  geom_bar(stat = "identity", width=0.3) +
  xlab("date") + ylab ("Number of days of precipitation") +
  ggtitle("Precipitation per month") + labs(fill = "Frequency") +
  geom_bar(data=w_complet_2013,aes(x=x+0.4, y=tem_value, fill=tem_type), width=0.3, stat = "identity") +
  xlab("date") + ylab("Number of days of temperature") +
  ggtitle("Temperatures and precipitations- WATERFORD") + labs(fill = "Frequency") + theme( plot.title = element_text(size = 12, face ="bold.italic")) +
  geom_point(aes(x= x+0.2, y = as.numeric(cnt_vehicle), size = 1), show.legend=FALSE, stat = "identity") +
  scale_y_continuous(sec.axis = sec_axis(~.,name="Number of vehicle")) + theme( plot.title = element_text(size = 11, face ="bold.italic")) + theme(axis.title.x = element_text(size = 15)) + theme(axis.title.y = element_text(size = 15)) 

Ответы [ 2 ]

0 голосов
/ 11 июня 2018

Поскольку ваш код несколько глючит, я удалил все, что мне показалось неуместным.Кроме того, весы действительно разные.Возможно, попробуйте журнал.

ggplot(data = d, aes(x = x, y = pre_value, fill = pre_type)) +
  geom_col(width=0.3) +
  geom_point(aes(y=log10(as.numeric(cnt_vehicle))), show.legend = F) + 
  scale_y_continuous(sec.axis = sec_axis(~10^., breaks = c(c(2,5)*10^6)))

enter image description here

0 голосов
/ 11 июня 2018

ggplot2 не «действительно» поддерживает вторичную ось Y ... но вы можете обмануть пакет, умножив ваши значения (скажем, на 100000), а затем изменив ось, разделив на 100000.

ggplot(data = w_complet_2013, aes(x = x, y = pre_value, fill = pre_type), stat = "identity") +
  scale_x_continuous(breaks=1:6, labels=unique(w_complet_2013$year_month)) +
  geom_bar(stat = "identity", width=0.3) +
  xlab("date") + ylab ("Number of days of precipitation") +
  ggtitle("Precipitation per month") + labs(fill = "Frequency") +
  geom_bar(data=w_complet_2013,aes(x=x+0.4, y=tem_value*100000, fill=tem_type), width=0.3, stat = "identity") +
  xlab("date") + ylab("Number of days of temperature", label = ) +
  ggtitle("Temperatures and precipitations- WATERFORD") + labs(fill = "Frequency") + theme( plot.title = element_text(size = 12, face ="bold.italic")) +
  geom_point(aes(x= x+0.2, y = as.numeric(cnt_vehicle), size = 1), show.legend=FALSE, stat = "identity") +
  scale_y_continuous(sec.axis = sec_axis(~.,name="Number of days of temperature")) + theme( plot.title = element_text(size = 11, face ="bold.italic")) + theme(axis.title.x = element_text(size = 15)) + theme(axis.title.y = element_text(size = 15)) +
  labs(y = "Number of vehicles")

однако .. вторичная ось не нужна.так что будьте осторожны !!

enter image description here

...