axis-labels

Modifying plot title and Y axis label when plotting acf & ccf

喜夏-厌秋 提交于 2020-12-26 16:44:44
问题 I have the following cross correlation function (ccf) with an acf class which I am trying to plot: > data.ccf<-structure(list(acf = structure(c(0.00370070496127902, 0.00206467231169963, 0.0225750357110768, 0.00298746518949757, 0.0145032913293758, 0.00963688419028638, 0.0333911509122289, 0.0339875564324283, 0.0250934925494934, 0.000676008442887869, 0.00492135501146539, -0.00592692854683653, -0.0107895022365464, 0.00609386610167392, -0.00984595563932813, -0.0171226578533912, -0.0293648412902752

Adding trend lines across groups and setting tick labels in a grouped violin plot or box plot

旧时模样 提交于 2020-07-23 07:39:08
问题 I have xy grouped data that I'm plotting using R 's ggplot2 geom_violin adding regression trend lines: Here are the data: library(dplyr) library(plotly) library(ggplot2) set.seed(1) df <- data.frame(value = c(rnorm(500,8,1),rnorm(600,6,1.5),rnorm(400,4,0.5),rnorm(500,2,2),rnorm(400,4,1),rnorm(600,7,0.5),rnorm(500,3,1),rnorm(500,3,1),rnorm(500,3,1)), age = c(rep("d3",500),rep("d8",600),rep("d24",400),rep("d3",500),rep("d8",400),rep("d24",600),rep("d3",500),rep("d8",500),rep("d24",500)), group

Adding trend lines across groups and setting tick labels in a grouped violin plot or box plot

﹥>﹥吖頭↗ 提交于 2020-07-23 07:38:08
问题 I have xy grouped data that I'm plotting using R 's ggplot2 geom_violin adding regression trend lines: Here are the data: library(dplyr) library(plotly) library(ggplot2) set.seed(1) df <- data.frame(value = c(rnorm(500,8,1),rnorm(600,6,1.5),rnorm(400,4,0.5),rnorm(500,2,2),rnorm(400,4,1),rnorm(600,7,0.5),rnorm(500,3,1),rnorm(500,3,1),rnorm(500,3,1)), age = c(rep("d3",500),rep("d8",600),rep("d24",400),rep("d3",500),rep("d8",400),rep("d24",600),rep("d3",500),rep("d8",500),rep("d24",500)), group