Data Engineering
A brief introduction to R.
First course. To begin with download a dataset and load it into R. Lets take a dataset from datamarket.com. For example compensations per hour of Manufacturing Sector. To load the above downloaded CSV into R call the ‘read.csv’ function as follows. > compensation = read.csv(“compensationperhour.csv”,header=TRUE, + sep=”;”,quote=”\”",dec=”.”,fill=TRUE) you can check if the above data is [...]
