4
I have a problem converting an Excel sheet in a *.csv file. I've searched all day for solutions, but nothing seems to work. After I select the sheet and save it as "CSV(Comma delimited)", pressing OK and Yes as Excel tells me there could be some problems, the file opens in format .csv without putting all the date in one column separated by commas... it just remains the same and obviously I get an error when I try to open it with R.
Is there someone who had the same problem? Did you find the solution? I even uninstalled and reinstalled Microsoft Office 2010 or cancelled the last two columns because they contain commas. Nothing works...
I would really appreciate if you could help me. I really don't know what to do next and I need it for my final paper for Master's degree.
Thank you!
Is this how your reading your file in R? dat = read.csv("name.csv", header = TRUE) – cybernard – 2018-03-10T15:14:35.763
1You are going to have to show us what you mean here, either with screenshots of the program or contents of the file or both. As it stands I am finding it difficult to work out what your actual problem is. – Mokubai – 2013-11-24T17:03:57.873
1When saving to .csv, the result is a text file for which a line is a row, and each columns are separated by comma. When Excel opens a CSV, it understands it and displays it in a table format. Open the CSV with notepad and you'll see all the columns and rows separated with comma. – Guillaume Rochat – 2013-11-24T17:54:16.353