in Technology by

A csv file consists of missing values that are represented by hashtags (“#”) and ampersands (“&”). How can you read this type of a csv file in R?

Please log in or register to answer this question.

1 Answer

0 votes
by

We can read this type of data with the following line of code –

csv2(‘data-file.csv’,header=FALSE,sep=’,’,na.strings=c<span style="border:0px; color:#777777; font-family:inherit; font-size:1.1em; font-stretch:inherit; font-style:inherit; font-variant:inherit; font-weight:inherit; line-height:inherit; margin:0px; padding

Related questions

...