File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ latency_plot <- ggplot(b$latencies, aes(x = elapsed)) +
61
61
62
62
# Plot 99 and 99.9th percentiles
63
63
plot2 <- latency_plot +
64
+ geom_point(aes(y = X99th , color = " X99th" )) +
65
+ geom_point(aes(y = X99_9th , color = " X99_9th" )) +
64
66
geom_smooth(aes(y = X99th , color = " X99th" )) +
65
67
geom_smooth(aes(y = X99_9th , color = " X99_9th" )) +
66
68
scale_color_hue(" Percentile" ,
@@ -70,6 +72,9 @@ plot2 <- latency_plot +
70
72
71
73
# Plot median, mean and 95th percentiles
72
74
plot3 <- latency_plot +
75
+ geom_point(aes(y = median , color = " median" )) +
76
+ geom_point(aes(y = mean , color = " mean" )) +
77
+ geom_point(aes(y = X95th , color = " X95th" )) +
73
78
geom_smooth(aes(y = median , color = " median" )) +
74
79
geom_smooth(aes(y = mean , color = " mean" )) +
75
80
geom_smooth(aes(y = X95th , color = " X95th" )) +
You can’t perform that action at this time.
0 commit comments