简体   繁体   中英

How to graph this data with two y-axes?

I have data:

structure(list(Group.1 = structure(c(17897, 17928, 17956, 17987, 
18017, 18048, 18078, 18109, 18140, 18170, 18201, 18231, 18262, 
18293, 18322, 18353, 18383, 18414, 18444, 18475, 18506, 18536, 
18567, 18597), class = "Date"), Total.y = c(431L, 399L, 424L, 
421L, 390L, 383L, 397L, 403L, 476L, 507L, 505L, 556L, 604L, 618L, 
39491L, 119263L, 111533L, 98341L, 77406L, 64553L, 116157L, 130517L, 
130685L, 149184L), t_VidP = c(92.3433874709977, 94.7368421052632, 
91.2735849056604, 94.061757719715, 96.6666666666667, 93.9947780678851, 
94.7103274559194, 95.0372208436725, 94.9579831932773, 91.3214990138067, 
93.8613861386139, 94.9640287769784, 93.5430463576159, 93.3656957928803, 
73.8699956952217, 79.24251444287, 81.4395739377583, 81.8275185324534, 
83.9921969873136, 85.6954750360169, 92.2596141429272, 93.4452983136296, 
93.5248880896813, 92.8739006864007)), row.names = c(NA, -24L), class = "data.frame")

that looks like:

Group.1             Total.y   t_VidP
    1 2019-01-01     431 92.34339
    2 2019-02-01     399 94.73684
    3 2019-03-01     424 91.27358
    4 2019-04-01     421 94.06176
    5 2019-05-01     390 96.66667
    6 2019-06-01     383 93.99478

I would like a graph with Total.y on the left y-axis. And the t_VidP on the right y-axis (scale from 0 to 100). I would like the x-axis to be the months. I would also like an x-axis title and y-axis title. Ideally it would look like: https://imgur.com/a/VjuLm0O

Here are two plots with a second y axis, the second of them with the y axis in log10 scale because the Total.y range is big. Also, see this SO post .

As for the second y axis, the trick is to compute a scaling factor M . And since the percentage column is in the range 0-100, divide it by 100 and use scales::percent to format percentages automatically.

library(ggplot2)
library(scales)

M <- max(df1$Total.y)

ggplot(df1, aes(Group.1)) +
  geom_line(aes(y = Total.y)) +
  geom_line(aes(y = M * t_VidP/100), linetype = "dashed") +
  scale_x_date(date_labels = "%Y %b") +
  scale_y_continuous(
    sec.axis = sec_axis(~ . / M, name = "% Vid", labels = percent)
  ) +
  ggtitle("y axis in natural scale") +
  labs(x = "Months", y = "Total") +
  theme_bw()

在此处输入图像描述

ggplot(df1, aes(Group.1)) +
  geom_line(aes(y = Total.y)) +
  geom_line(aes(y = M * t_VidP/100), linetype = "dashed") +already 
  scale_x_date(date_labels = "%Y %b") +
  scale_y_continuous(
    trans = "log10",
    breaks = trans_breaks("log10", function(x) 10^x),
    labels = trans_format("log10", math_format(10^.x)),
    sec.axis = sec_axis(~ . / M, name = "% Vid", labels = percent)
  ) +
  ggtitle("y axis in log10 scale") +
  labs(x = "Months", y = "Total") +
  theme_bw()

在此处输入图像描述

Additionally, base R approach would be:

par(mar = c(5, 4, 4, 4) + 0.3)
plot(df$Group.1, df$Total.y, col = "red", type = "l", xlab = "Date", ylab = "Total")
par(new = T)
plot(df$Group.1, df$t_VidP, col = "blue", type = "l", xlab = "", ylab = "", axes = F)
axis(side = 4, at = pretty(range(df$t_VidP)))
mtext("%Vid", side = 4, line = 3)
legend(x = "left", legend=c("Total", "%Vid"),
       col=c("red", "blue"), lty=1, cex=0.8)

在此处输入图像描述

I tried to keep the aes out of y.

library(tidyverse)
library(lubridate)
df %>% 
  mutate(Total.y_transformed = Total.y/(43485.2 /90.54 )) %>% 
  mutate(month = month(ymd(Group.1), label = TRUE)) %>% 
  pivot_longer(
    cols = c(Total.y_transformed, t_VidP),
    names_to = 'names',
    values_to = 'value'
  ) %>% 
  arrange(names)

ggplot(df1, aes(x = Group.1, y = value, color=names)) + 
  geom_line(size=1) +   
  scale_color_manual(labels = c("t_VidP", "Total"), values = c("blue", "red")) + 
  scale_y_continuous(sec.axis = sec_axis(~.*(43485.2 /90.54), name = "Total")) +
  scale_x_date(date_labels = "%Y %b") +
  ggtitle("Title") +
  labs(x = "Months", y = "t_VidP",  colour = "Parameter") +
  theme(legend.position = c(0.8, 0.9)) +
  theme_classic(base_size=12)

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM