R Programming- hands on with dplyr package

In this post, l will briefly go over the dplyr package which can make data manipulation very easy in R. First install the package from CRAN by issuing install.packages(“dplyr”). After installing load the package by issuing the command library(dplyr). This tutorial is on dplyr version 0.4.0 or later so check to make sure the requirement […]

Read More

R Programming-Find Mean, Complete Cases, And Correlation of Pollutants in File Data

In this post, I am going to show functions that l have written to work on a data in files which contain observation of pollutants monitored at different locations. The data is a .csv file and there are 332 monitors which are set up at different locations. Sample of data looks like below “Date”,”sulfate”,”nitrate”,”ID” “2003-01-01”,NA,NA,1 […]

Read More