R Programming

Statistics and Programming

How to generate scatter plot in R?

Summarizing your data, either numerically or graphically, is an important component of any data analysis. Fortunately, R has excellent graphics capabilities and can be used whether you want to produce plots for initial data exploration, model validation or highly complex publication quality figures. Base R Graphics The base R graphics system is the original plotting …

How to generate scatter plot in R? Read More »

Learn 6 easy functions from base R to spot check your data set

When the new data is presented to you for the analysis, you would like to get first hand information on the data set before diving deep into analysis. This is similar to doing a warm up exercises before engaging your body into high intensity workout. In this tutorial we will look at six different ways …

Learn 6 easy functions from base R to spot check your data set Read More »

What are R Packages and how to install them?

R packages are extensions to the R programming language. R packages contain code, data, and documentation in a standardized collection format that can be installed by users of R, typically via a centralized software repository such as CRAN (the Comprehensive R Archive Network). In this article, we will have a look at R package system, …

What are R Packages and how to install them? Read More »

Scroll to Top