Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 742 Bytes

File metadata and controls

27 lines (20 loc) · 742 Bytes

Basic-R-Programming

This is a collection of a basic set of codes implemented in R.

Libraries Used

  • ggplot2: For advanced and flexible data visualization.
  • rpart: For decision tree modeling.
  • rpart.plot: For plotting decision trees.
  • e1071: For SVM and Logistic Regression models.

Getting Started

Install R:

If you haven't installed R, download it from CRAN.

Install Packages:

Open R or RStudio and run the following commands to install the required packages:

install.packages("ggplot2")
install.packages("rpart")
install.packages("rpart.plot")
install.packages("e1071")

Run Scripts:

Execute each script individually to observe the data analysis and visualization outputs.