Hi Theyaa,
My mistake you can create customized plots in Flow.
To create a plot, select the frame your interested (I'll use
"allyears2k.hex" since that's the main frame for the airlines demo, but you can switch this out for whatever frame you are interested in):
click the 'assist me' button (looks like a question mark and is on the top right corner of the menu bar)
- in the assist cell click on 'getFrames'
- under 'allyears2k.hex' click on 'Inspect'
- within the plot cell you could for example:
- select 'point' from the 'Type' drop down menu
- select 'min' from the X-Axis drop down menu
- select 'min' from the Y-Axis drop down menu
- and then click on the 'Plot' button
Or if you'd just want the cs code (paste the following into a new cell and run):
plot (g) -> g(
g.point(
g.position "min", "min"
)
g.from inspect "columns", getFrameSummary "allyears2k.hex"
)
you can also get a lot of nice built in plots, after you parse the data:
Within the cell getFrameSummary "allyears2k.hex", under column summaries click on any of the column names and you will see several nice plots
If you want to look at prediction plots, you would need a dataset to predict on (you can do this by splitting the airlines demo data earlier on). Then once you have your prediction frame, you can do
getFrameSummary "the name of your prediction frame"
and then click on the 'predict' column under label.
I realize these steps might be a bit hard to follow, so let me know if you need more help.
cheers,
Lauren