Skip to content

Commit 2ed07ec

Browse files
committed
Add convenience chart functions
1 parent 9df0d26 commit 2ed07ec

File tree

5 files changed

+78
-82
lines changed

5 files changed

+78
-82
lines changed

docs/content/area-plots.fsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Chart.Area(x,y)
2222
(*** include-it:area1 ***)
2323

2424

25-
2625
(*** define-output:area2 ***)
2726
Chart.SplineArea(x,y)
2827
(*** include-it:area2 ***)

docs/content/bar-charts.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#r "../../bin/FSharp.Plotly.dll"
44

55
(**
6-
# FSharp.Plotly: Pie and Doughnut Charts
6+
# FSharp.Plotly: Bar and Column Charts
77
88
*Summary:* This example shows how to create bar and a column charts in F#.
99

docs/content/box-plots.fsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
88
*Summary:* This example shows how to create boxplot charts in F#.
99
10-
A boxplot chart can be created using the `Chart.BoxPlot` function.
11-
10+
A box plot or boxplot is a convenient way of graphically depicting groups of numerical data through their quartiles.
11+
Box plots may also have lines extending vertically from the boxes (whiskers) indicating variability outside the upper
12+
and lower quartiles, hence the terms box-and-whisker plot and box-and-whisker diagram.
13+
Outliers may be plotted as individual points.
1214
*)
1315

1416
open FSharp.Plotly

docs/content/bubble-charts.fsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
#r "../../bin/FSharp.Plotly.dll"
44

55
(**
6-
# FSharp.Plotly: Pie and Doughnut Charts
6+
# FSharp.Plotly: Bubble chart
77
88
*Summary:* This example shows how to create pie and doughnut charts in F#.
99
10-
A pie or a doughnut chart can be created using the `Chart.Pie` and `Chart.Doughnut` functions.
11-
When creating pie or doughnut charts, it is usually desirable to provide both labels and
12-
values.
10+
A bubble chart is a type of chart that displays three dimensions of data. Each entity with its triplet (x, y, size)
11+
of associated data is plotted as a disk. The first two values determine the disk's xy location and the
12+
third its size.
1313
*)
1414

1515
open FSharp.Plotly

0 commit comments

Comments
 (0)