Side by Side histograms in the Same Graph in R?

前端 未结 2 1912
無奈伤痛
無奈伤痛 2020-12-14 09:08

This should actually be really simple but I\'m having a really hard time finding a solution to this problem.

I have two very simple numeric vectors in R. I am simply

2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-14 09:47

    The example comes from using the plotrixpackage. Code was found here. You will first need to install that package before you can access the multihist function:

    #install.packages("plotrix")
    require(plotrix)
    
    l <- list(rnorm(50),rnorm(50,sd=2),rnorm(50,mean=3))
    multhist(l)
    

    enter image description here

提交回复
热议问题