@@ -45,7 +45,7 @@ Outliers may be plotted as individual points.
4545*)
4646
4747let box1 =
48- Chart.BoxPlot( x, y, Jitter= 0.1 , Boxpoints = StyleParam.Boxpoints .All)
48+ Chart.BoxPlot( x, y, Jitter= 0.1 , BoxPoints = StyleParam.BoxPoints .All)
4949
5050(* ** condition: ipynb ***)
5151#if IPYNB
@@ -60,7 +60,7 @@ box1 |> GenericChart.toChartHTML
6060By swapping x and y plus using `StyleParam.Orientation.Horizontal` we can flip the chart horizontaly.
6161*)
6262let box2 =
63- Chart.BoxPlot( y, x, Jitter= 0.1 , Boxpoints = StyleParam.Boxpoints .All, Orientation= StyleParam.Orientation.Horizontal)
63+ Chart.BoxPlot( y, x, Jitter= 0.1 , BoxPoints = StyleParam.BoxPoints .All, Orientation= StyleParam.Orientation.Horizontal)
6464
6565(* ** condition: ipynb ***)
6666#if IPYNB
@@ -79,8 +79,8 @@ let y' = [2.; 1.5; 5.; 1.5; 2.; 2.5; 2.1; 2.5; 1.5; 1.;2.; 1.5; 5.; 1.5; 3.; 2.
7979
8080let box3 =
8181 [
82- Chart.BoxPlot( " y" , y, Name= " bin1" , Jitter= 0.1 , Boxpoints = StyleParam.Boxpoints .All);
83- Chart.BoxPlot( " y'" , y', Name= " bin2" , Jitter= 0.1 , Boxpoints = StyleParam.Boxpoints .All);
82+ Chart.BoxPlot( " y" , y, Name= " bin1" , Jitter= 0.1 , BoxPoints = StyleParam.BoxPoints .All);
83+ Chart.BoxPlot( " y'" , y', Name= " bin2" , Jitter= 0.1 , BoxPoints = StyleParam.BoxPoints .All);
8484 ]
8585 |> Chart.combine
8686
0 commit comments