%useLatestDescriptors %use lets-plot // Set the 'grey' theme as a default plot theme. LetsPlot.theme = themeGrey() val dat = mapOf("x" to listOf(1, 2, 3), "y" to listOf(1, 2, 3)) letsPlot(dat) {x = "x"; y = "y"} + geomPoint(size = 5)