ggplot2 - how to use ggplot through Azure ML R Script -
in data exploration phrase, need visualization check relationship between data columns. have tried azure ml built-in visualization , felt it's limited. r ggplot allows me choose chart want , customization.
i new in using azure ml. when trying azure ml r script , type:
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")
cannot find visualization... not in visualization result, neither in log ourput have tried azure ml built-in plot(), cannot find column in dataset...
so, there anyway, when using ggplot in azure ml r script, can find visualization results?
finally found visualization. put code in azureml studio execute r script module fine. after code has been executed successfully, right click execute r script module, , choose r device, visualization there
Comments
Post a Comment