https://www.youtube.com/watch?v=z9Sen1HTu5o&NR=1&feature=endscreen
and other very cool sound and water
http://www.youtube.com/watch?feature=player_detailpage&v=uENITui5_jU
https://www.youtube.com/watch?v=z9Sen1HTu5o&NR=1&feature=endscreen
and other very cool sound and water
http://www.youtube.com/watch?feature=player_detailpage&v=uENITui5_jU
Stacking histograms using the lattice library:
library(lattice) histogram(~X1|V1, data = df0, layout=c(1,2))
Which produces something like this (you’ll need to adjust the layout parameter if there are more factor levels):
Some more options:
histogram(~X1|V1 , data = df0 , layout=c(1,2) ##stack them , type="count" ##also available are percentage and density , nint=50 ##number of bins )
Which produces this: