I used these CMDs:
x <- read.csv("path"header=TRUE)
d153 = x$MG.153.m4
range(d153,na.rm=TRUE)
breaks = seq(0,1900, by=100) #1850 is max, 11 is min
d153.cut = cut(d153,breaks,right=FALSE)
d153.freq = table(d153.cut)
cbind(d153.freq)
This gives only one of 96 column in "x". How can I run all these CMD for each column at the same time and arrange them in the same table?