是否可以将 MS PowerBI 与远程 R 连接?
Is it possible to connect MS PowerBI with remote R?
我有一个远程且功能强大的 R 服务器。是否有机会在 PowerBI 中使用它?或者我是否必须通过本地 R 安装路由通信?
我想在 PowerBI Desktop 中工作以利用其界面并生成图形并利用我现有的 R 基础结构。我可以编写一个包装器脚本让我的本地 R 访问远程 R,但如果连接处理将在 PowerBI 中本地完成(使用为此目的编写的一些专用 R 包或只是 RServe
/ svSocket
/?)。
R 视觉对象 自 July 2016. The feature has to be activated by the administrator of the Power BI portal. According to the blog post, you have to create the dashboard with the Power BI Desktop version 起在 Power BI 服务中受支持并将其发布到门户。
Power BI 每个月都会添加新功能,很容易落后!
更新
最近又添加了三篇关于 R 脚本的博文:
- Running R Scripts in Power BI Desktop
- Create Power BI visuals using R
- 和Use an external R IDE with Power BI
与问题最相关的似乎是 Running R Scripts in Power BI Desktop,它展示了如何在 Power BI 中将 R 脚本用作数据源。
转到 获取数据 菜单和 select R 脚本 所有[=49] =]类别。
例如,要加载 mtcars
数据集,请转至 Get Data > All > R Script> 并输入 data(mtdata)
作为脚本。 Power BI 将显示要加载或编辑的框架列表。
在将数据加载到 Power BI 数据集之前,可以像其他来源一样使用 Power BI 的查询编辑器编辑框架的数据。
之后,数据集就可以使用了,就像任何其他 Power BI 数据集一样
您应该检查 Power BI R Script Gallery. Most of the scripts there are visuals, but at least this one 使用 R 生成源数据
我有一个远程且功能强大的 R 服务器。是否有机会在 PowerBI 中使用它?或者我是否必须通过本地 R 安装路由通信?
我想在 PowerBI Desktop 中工作以利用其界面并生成图形并利用我现有的 R 基础结构。我可以编写一个包装器脚本让我的本地 R 访问远程 R,但如果连接处理将在 PowerBI 中本地完成(使用为此目的编写的一些专用 R 包或只是 RServe
/ svSocket
/?)。
R 视觉对象 自 July 2016. The feature has to be activated by the administrator of the Power BI portal. According to the blog post, you have to create the dashboard with the Power BI Desktop version 起在 Power BI 服务中受支持并将其发布到门户。
Power BI 每个月都会添加新功能,很容易落后!
更新
最近又添加了三篇关于 R 脚本的博文:
- Running R Scripts in Power BI Desktop
- Create Power BI visuals using R
- 和Use an external R IDE with Power BI
与问题最相关的似乎是 Running R Scripts in Power BI Desktop,它展示了如何在 Power BI 中将 R 脚本用作数据源。
转到 获取数据 菜单和 select R 脚本 所有[=49] =]类别。
例如,要加载 mtcars
数据集,请转至 Get Data > All > R Script> 并输入 data(mtdata)
作为脚本。 Power BI 将显示要加载或编辑的框架列表。
在将数据加载到 Power BI 数据集之前,可以像其他来源一样使用 Power BI 的查询编辑器编辑框架的数据。
之后,数据集就可以使用了,就像任何其他 Power BI 数据集一样
您应该检查 Power BI R Script Gallery. Most of the scripts there are visuals, but at least this one 使用 R 生成源数据