Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue loading data of "file name conversion problem - name too long?"

Tags:

import

r

rstudio

I tried to open Excel data using import data in the RStudio, but I got this error:

file name conversion problem - name too long?

See the session screenshot below:

R Error

What is the problem, and how can I handle this?

like image 465
Yeseul Nam Avatar asked Sep 02 '25 02:09

Yeseul Nam


1 Answers

Answer goes out to Adam Sampson.

It looks like you have a problem because the path name has non-English characters in it. You have two option:

  • rename directory into English then use "Import Text Data";
  • read a dataset from a console using command dataset <- read_csv("c:/ <copy rest of path> /Affect.txt").
like image 112
Artem Avatar answered Sep 05 '25 02:09

Artem