Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 693 Bytes

examples.md

File metadata and controls

41 lines (32 loc) · 693 Bytes

Examples

Bar chart

View Chart.Bar'AB'⍪'XYZ',⍪5 10 20

Simple bar chart

Box plot

View Chart.BoxPlot Example.Data.penguin

Correlation heat map

View Chart.HeatMapCorrelation Example.Data.corrMat

Correlation heat map

Line graph

x←(÷×(○2×⍳))1000   ⍝ 1000 number from 0 to 2×pi
y←1○x              ⍝ sine(x)
data←'x' 'sine(x)'⍪x,⍪y
View Chart.Line data

Line graph of sine function

Pie chart

total←Example.Data.(barley[;2],∘(+/)⌸barley[;4])
View Chart.Pie ⌽total

Scatter plot

View Chart.Scatter Example.Data.car[;4 8]