Created
December 23, 2014 13:10
-
-
Save TahaHachana/30c61327750f87edcc29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#load """..\packages\XPlot.GoogleCharts.1.1.6\XPlot.GoogleCharts.fsx""" | |
#load """..\packages\Deedle.1.0.6\Deedle.fsx""" | |
#r """..\packages\XPlot.GoogleCharts.Deedle.0.6.1\Lib\Net45\XPlot.GoogleCharts.Deedle.dll""" | |
open Deedle | |
open XPlot.GoogleCharts | |
open XPlot.GoogleCharts.Deedle | |
let msftCsv = Frame.ReadCsv(__SOURCE_DIRECTORY__ + "/MSFT.csv") | |
let fbCsv = Frame.ReadCsv(__SOURCE_DIRECTORY__ + "/FB.csv") | |
let table = | |
let options = | |
Options( | |
page = "enable", | |
pageSize = 20 | |
) | |
msftCsv | |
|> Chart.Table | |
|> Chart.WithOptions options | |
|> Chart.Show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment