在数据探索短语中,我需要一些可视化来检查数据列之间的关系。我已经尝试过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时,我能找到可视化结果吗?