![]() |
VOOZH | about |
Excel files are of extension .xls, .xlsx and .csv(comma-separated values). To start working with excel files in R Programming Language, we need to first import excel files in RStudio or any other R supporting IDE(Integrated development environment).
First, install readxl package in R to load excel files. Various methods including their subparts are demonstrated further.
Sample_data1.xlsx:
👁 ImageSample_data2.xlsx:
👁 ImageThe two excel files Sample_data1.xlsx and Sample_data2.xlsx and read from the working directory.
👁 ImageThe excel files are loaded into variables Data_1 and Data_2 as a dataframes and then variable Data_1 and Data_2 is called that prints the dataset.
The Sample_data1.xlsx file and Sample_file2.xlsx are modified.
👁 ImageThe value of the P-class attribute or variable of Data1 data is modified to 0. The value of Embarked attribute or variable of Data2 is modified to S.
The variable or attribute is deleted from Data1 and Data2 datasets containing Sample_data1.xlsx and Sample_data2.xlsx files.
👁 ImageThe - sign is used to delete columns or attributes from the dataset. Column 2 is deleted from the Data1 dataset and Column 3 is deleted from the Data2 dataset.
The two excel datasets Data1 and Data2 are merged using merge() function which is in base package and comes pre-installed in R.
👁 ImageData1 and Data2 are merged with each other and the resultant file is stored in the Data3 variable.
New columns or features can be easily created in Data1 and Data2 datasets.
👁 ImageNum is a new feature that is created with 0 default value in Data1 dataset. Code is a new feature that is created with the mission as a default string in Data2 dataset.
After performing all operations, Data1 and Data2 are written into new files using write.xlsx() function built in writexl package.
👁 ImageThe Data1 dataset is written New_Data1.xlsx file and Data2 dataset is written in New_Data2.xlsx file. Both the files are saved in the present working directory.