R boxplot frequency

后端 未结 1 1670
滥情空心
滥情空心 2021-01-25 23:30

I\'m in need of assistance... I\'m using R to analyze some data... I have a frequency table called mytable... that I created like this:

mytable=         


        
相关标签:
1条回答
  • 2021-01-25 23:44

    use boxplot before you summarize your data.

    boxplot(var1)
    

    If you want to see the distribution per split, use the formula format:

    boxplot(var1 ~ cut(var2, 12))
    
    0 讨论(0)
提交回复
热议问题