data(Boston, package="MASS")
# frequency table
summary(as.factor(Boston$rad))
tab <- table(Boston$rad)
tab
prop.table(tab)
# cumulative frequency table
cumsum(tab)
cumsum(prop.table(tab))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.