Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

How to export NA strings to CSV using R Script?

I'm exporting country codes from Power Query through R Script using write.csv().

Problem is that I have correct text NA in dataset column which refers to country Namibia. I want to keep its semantic during export and at the same time export Nulls as empty cells to CSV/Excel. 

Unfortunately, each time R treats NA in dataset as N/A and nulls in dataset as N/A too. That's why I either get everything set to NA or, if using features like "export NA as empty string", get empty cell instead of NA (Namibia), which I want to keep in...

Please, advise a solution. It seems I have to say R somehow that it does not have to treat NA as N/A if it appears in dataset. 

PS: I also tried packages like readr, openxlsx, xlsx and so on. The result is the same. 

2 REPLIES 2
dax
Community Support
Community Support

Hi @Anonymous , 

I test this in my environment, I find that when I use write.csv directly in R, it will export data directly without missing data. When I use "write.csv(dataset,"C:\\test\\r export1.csv",na="")", it will convert NA to null, but you could add '' on NA to treat it as string.

735.PNG

Or you also could provide your simple sample data and your R script, then I will test this in my envrironment.

Please do mask sensitive data before uploading.

Thanks for your understanding and support.
Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Anonymous
Not applicable

I have the following script

let
Source = Table.FromRecords({
[country_code = "NA", country_name = "Namibia"],
[country_code = null, country_name = "Undefined code"]
}),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"country_code", type text}, {"country_name", type text}}),
CSVWrite = R.Execute("write.csv(dataset, file = ""C:\\Temp\\write_csv_test.csv"", quote = TRUE, na="""")#(lf)output <- dataset",[dataset=#"Changed Type"]),
#"Expanded Value" = Table.ExpandTableColumn(Table.SelectColumns(CSVWrite,{"Value"}), "Value", {"country_code", "country_name"}, {"country_code", "country_name"})
in
#"Expanded Value"

Output file looks like:

"","country_code","country_name"
"1",,"Namibia"
"2",,"Undefined code"
 

"Expanded Value" also looks like:

country_code country_name
null Namibia
null Undefined code

It differs from your. I havePBi Version: 2.81.5831.821 64-bit  and R Open  3.5.3 .

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors