You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Brief description of the problem
I read a csv file using the read_csv function, but all the values of the EV100/CI variable become null in the reading result, while using the read.csv function reads the file,the values are right. I have uploaded my data file, a csv format file,as an attachment.
# insert reprex heredd<- read_csv("C:\\Users\\rootdata\\17.csv")
View(dd)
#while using the read.csv function can get right values.ddt<- read.csv("C:\\Users\\rootdata\\17.csv")
View(ddt)