Krissi Klimke
Krissi Klimke

Reputation: 11

load RData file shows this error: embedded nul character

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

Answers (1)

Magnus Nordmo
Magnus Nordmo

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

Related Questions