繁体   English   中英

有没有办法在ggplot中使用自定义线型

[英]Is there a way to use selfdefined linetypes in ggplot

有没有办法在ggplot中定义自己的线型? 在折线图中,我希望线条显示为小数字。 有点像线型“点缀”,只带有少量“ 1”或“ 2”而不是点。 我尝试过使用标签,但是它们仅显示在定义的点上,而不显示在它们之间的空格中。 我不知道如何将其实现为scale_linetype_manual

df <- data.frame(
  x = runif(10),
  y = runif(10),
  z = c(1,1,1,1,1,2,2,2,2,2))

ggplot(df, aes(x, y)) +
  geom_line(aes(colour=as.factor(z), linetype = as.factor(z)))+ 
  geom_text(aes(label=z))

您可以尝试采用这种策略 ,将路径分成等距的段,

在此处输入图片说明

set.seed(123)
df <- data.frame(
  x = runif(10),
  y = runif(10),
  z = c(1,1,1,1,1,2,2,2,2,2))

parametric_smoothie <- function(x, y, sort = TRUE, N=1e2, phase=1, offset=0) {

  if(sort){
    ox <- order(x)
    x <- x[ox]
    y <- y[ox]
  }

  lengths <- c(0, sqrt(diff(x)^2 + diff(y)^2))
  l <- cumsum(lengths)
  lmax <- max(l)
  newpos <- seq(phase*lmax/N, lmax-phase*lmax/N, length.out = N) + offset*lmax/N
  xx <- approx(l, x, newpos)$y
  yy <- approx(l, y, newpos)$y

  ## new points, equi-spaced
  dnew <- data.frame(x = xx, y = yy)

  xx <- c(x, xx)
  yy <- c(y, yy)
  ox <- order(xx)
  xx <- xx[ox]
  yy <- yy[ox]

  ## original and new points combined
  dcomb <- data.frame(x = xx, y = yy)

  list(dnew = dnew, dcomb = dcomb)
}

dl <- plyr::dlply(df, "z", function(.d) parametric_smoothie(.d$x, .d$y, N=10))

df2 <- plyr::ldply(dl, "[[", "dnew")
df3 <- plyr::ldply(dl, "[[", "dcomb")

ggplot(df, aes(x, y)) +
  geom_line(data = df3, aes(colour=as.factor(z))) + 
  geom_point(data = df2, colour = "grey92", size=5) + 
  geom_point(aes(colour=as.factor(z))) + 
  geom_text(data = df2, aes(label=z), size=3)  

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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