Skip to content

Instantly share code, notes, and snippets.

View VijaySelvaraju's full-sized avatar

Vijay Selvaraju VijaySelvaraju

  • Coimbatore,Tamil Nadu,India
View GitHub Profile
1
Take a look at the 'iris' dataset that comes with R. The data can be loaded with the code:
library(datasets)
data(iris)
A description of the dataset can be found by running
?iris
@VijaySelvaraju
VijaySelvaraju / rprog-quiz1.txt
Created August 14, 2017 05:07 — forked from kfeoktistoff/rprog-quiz1.txt
R Programming: Quiz1
1
The R language is a dialect of which of the following programming languages?
S
2
The definition of free software consists of four freedoms (freedoms 0 through 3). Which of the following is NOT one of the freedoms that are part of the definition?
The freedom to prevent users from using the software for undesirable purposes.
3
In R the following are all atomic data types EXCEPT