如何通过Azure ML R脚本使用ggplot

时间:2016-04-21 22:56:37

标签: r ggplot2 azure-machine-learning-studio

在数据探索短语中,我需要一些可视化来检查数据列之间的关系。我已经尝试过Azure ML内置可视化,并感觉它有限。 R ggplot允许我选择我想要的图表并进行一些自定义。

我是使用Azure ML的新手。当我尝试Azure ML R脚本并键入:

library("ggplot2")

p <- ggplot(train, aes(x= Item_Visibility, y = Item_Outlet_Sales)) +
geom_point(size = 2.5, color = "navy") + xlab("Item Visibility") + ylab("Item Outlet Sales")

无法找到我的可视化的位置...它不在可视化结果中,也不在log ourput中 我也试过Azure ML内置plot(),它找不到我的数据集中的列...

那么,无论如何,当我在Azure ML R Script中使用ggplot时,我能找到可视化结果吗?

1 个答案:

答案 0 :(得分:0)

最后我找到了可视化。只需将代码放入AzureML Studio Execute R Script模块即可。 代码执行成功后,右键单击Execute R Script模块,选择R device,可视化就在那里

ggplot through AzureML R Script