在Power BI中使用R可视化
错误:
Stack Trace:
Microsoft.PowerBI.ExploreServiceCommon.ScriptHandlerException: R script error.
Error in plot.window(...) : need finite 'xlim' values
Calls: plot -> plot.default -> localWindow -> plot.window
In addition: Warning messages:
1: In min(x) : no non-missing arguments to min; returning Inf
2: In max(x) : no non-missing arguments to max; returning -Inf
3: In min(x) : no non-missing arguments to min; returning Inf
4: In max(x) : no non-missing arguments to max; returning -Inf
Execution halted
---> Microsoft.PowerBI.Radio.RScriptRuntimeException: R script error.
Error in plot.window(...) : need finite 'xlim' values
Calls: plot -> plot.default -> localWindow -> plot.window
In addition: Warning messages:
1: In min(x) : no non-missing arguments to min; returning Inf
2: In max(x) : no non-missing arguments to max; returning -Inf
3: In min(x) : no non-missing arguments to min; returning Inf
4: In max(x) : no non-missing arguments to max; returning -Inf
Execution halted
我只是在尝试对数据进行子集时才会出现上述错误。
通过阅读其他类似的问题,我检查了我的数据类型,它们分别是Integer和Double。
我还使用any(is.na(dataset))
检查了数据中的NA值,结果显示没有NA值。
当我输入xlim
和ylim
值时,我的情节会变为空白。
代码:
dataset <- dataset[dataset$Column1=="T1",] #Subset of data I want. All rows where Column1 is equal to T1.
x <- as.numeric(dataset$`Height`) # Integer
y <- as.numeric(dataset$`Pct Pop`) # Double
plot(x, y,
xlim = c(0, 45000),
ylim = c(0, 1.5)
)
答案 0 :(得分:1)
我通过使用power bi过滤方法添加我想要的过滤器来修复此错误,而不是像在R中通常那样尝试创建我的数据子集。要完成此操作,请单击您的图表,然后在右下角将看到一个名为“过滤器”的部分,您可以在其中添加列和约束。