Forum Discussion
hervekoap
4 years agoRegular Visitor
R script in PowerBi failed can't display the visual
Hi collegues I am using R3-3.1 I am adding a componound R and when I drag and drop a column ( InitialSidFrom)my R component says What CAn I do to solve this issue? thanks ...
hervekoap
4 years agoRegular Visitor
I can not add a pbix file ...
here my excel::
and the pbix source ( R code) :
# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script:
dataset <- data.frame(Column1, Column2)
dataset <- unique(dataset)
# Paste or type your script code here:
require(gdata)
write.table(trim(dataset), file="e:/temp/r4.csv", sep = "\t", row.names = FALSE)
plot(dataset);