Writing 10M lines of a query result to a table in Power Query via R
let | |
seed = {1..10000000}, | |
seedTable = Table.FromList(seed, Splitter.SplitByNothing(), null, null, ExtraValues.Error), | |
RScript = R.Execute("write.csv(dataset,""d:\\Downloads\\out.csv"")",[dataset=seedTable]), | |
out = RScript | |
in | |
out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment