i cannot open the csv file
how to open and use it please tell
R Introduction-to-Data-Frames-in-R 06-07 min 20-30 sec
Answers:
Kindly use the "read.csv()" function to read a CSV file present in the working directory. For example, if you have a file with the name "ABC.csv" in your working directory then you can read the file's content into a variable (with some name like "data") using the command "data=read.csv("ABC.csv")." Then you can apply operations on the variable "data" as per your requirements.