Reputation: 11
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.
Upvotes: 1
Views: 196
Reputation: 951
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
Upvotes: -1