gibney.org
:
Statistics
:
Create Histograms
:
Create Histograms using R
search:
See as:
raw
|
code
terms of service
|
imprint
gibney.org
is powered by
m1d1
Create Histograms using R
(Entry Nr. 145, by user 1 |
edit
)
If you have an object with data, you can simply create a histogram this way:
hist(object)
You can place multiple histograms into one window like this:
layout(matrix(1:2, 1, 2))
hist(object1)
hist(object2)
Create a new entry at this position