0

I tried to figure out the problem, but didn't find a solution.

Following problem: I've tried to load this Rdata file. It is about 4 GB. But I always got the error.

Error in load.....Embedded nul character.

load("C:/Users/setup/Desktop/WZ/data/rd2_full.RData")

How can I handle this problem. Is there a possibility to ignore the nul character?

It would be nice to hear from some of you.

  • Read this and edit your question. Chances of an awnser are much higher: https://stackoverflow.com/help/how-to-ask – Elias Oct 28 '20 at 13:28

1 Answers1

0

Try to reverse the / to \

load("C:\Users\setup\Desktop\WZ\data\rd2_full.RData")

See here for more info: Difference between forward slash (/) and backslash (\) in file path

Magnus Nordmo
  • 824
  • 6
  • 10