Skip to content

Instantly share code, notes, and snippets.

@TahaHachana
Created December 23, 2014 13:10
Show Gist options
  • Save TahaHachana/30c61327750f87edcc29 to your computer and use it in GitHub Desktop.
Save TahaHachana/30c61327750f87edcc29 to your computer and use it in GitHub Desktop.
#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