%useLatestDescriptors
%use lets-plot
//%use krangl
LetsPlot.getInfo()
Lets-Plot Kotlin API v.3.2.0. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.2.3.0.
%use krangl
val mpg_df = DataFrame.readCSV("https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/docs/examples/data/mpg.csv")
mpg_df.head()
manufacturer | model | displ | year | cyl | trans | drv | cty | hwy | fl | class | |
---|---|---|---|---|---|---|---|---|---|---|---|
1 | audi | a4 | 1.8 | 1999 | 4 | auto(l5) | f | 18 | 29 | p | compact |
2 | audi | a4 | 1.8 | 1999 | 4 | manual(m5) | f | 21 | 29 | p | compact |
3 | audi | a4 | 2.0 | 2008 | 4 | manual(m6) | f | 20 | 31 | p | compact |
4 | audi | a4 | 2.0 | 2008 | 4 | auto(av) | f | 21 | 30 | p | compact |
5 | audi | a4 | 2.8 | 1999 | 6 | auto(l5) | f | 16 | 26 | p | compact |
Shape: 5 x 12.
val mpg = mpg_df.toMap()
// Default legend
val p = letsPlot(mpg) {x="displ"; y="hwy"; color="manufacturer"} + geomPoint(size=5.0) + ggsize(600,250)
p
// Layout the legend in two columns
p + scaleColorDiscrete(guide=guideLegend(ncol=2)) + ggtitle("Two columns legend")
// Same and fill by rows
p + scaleColorDiscrete(guide=guideLegend(ncol=2, byRow=true)) +
ggtitle("Two columns legend filled by rows")
// Adjust legend and axis
// - five rows legend
// - draw legend below plot
// - remove axis
p + scaleColorDiscrete(guide=guideLegend(nrow=5)) +
theme(axisTitle="blank").legendPositionBottom() +
ggtitle("Five rows legend and below") + ggsize(700,400)
// Set color to city MPG and shape to driveĀ·train
val p1 = letsPlot(mpg) {x="displ"; y="hwy"} + geomPoint(size=5.0) {color="cty"; shape="drv"} + ggsize(700, 350)
p1
// Change legend position and orientation
p1 + theme().legendPosition(1, 1).legendJustification(1, 1).legendDirectionHorizontal()
// Adjust colorbar size
// Change order in drive-train legend
// Set labels to legends and axis
// Remove vertical axis line
p1 + theme().legendPosition(1, 1).legendJustification(1, 1).legendDirectionHorizontal().axisLineYBlank() +
scaleColorContinuous(name="City MPG",
low="dark_blue", high="light_blue",
guide=guideColorbar(barHeight=10, barWidth=300)) +
scaleShape(name="Drive-train", breaks=listOf('f', 'r', '4'), labels=listOf("front", "rear", "4X4")) +
xlab("Engine displacement (L)") + ylab("Highway MPG")