Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
内部に9つの異なるベクトルを含むリストがあります。そして、名前ごとに異なる色で 1 つの図にそれら (点線) をプロットします。R言語でそれを行う方法は?
構成例を使用する:
# example data: dat <- list(a=1:5,b=2:7,c=3:10) # get plotting: plot(unlist(dat),type="n",xlim=c(1,max(sapply(dat,length)))) mapply(lines,dat,col=seq_along(dat),lty=2) legend("topleft",names(dat),lty=2,col=seq_along(dat))