io.github.danielTucano.matplotlib.pyplot.subplots.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matplotlib4k Show documentation
Show all versions of matplotlib4k Show documentation
Matplotlib for kotlin: A simple graph plot library for kotlin with powerful python matplotlib
The newest version!
package io.github.danielTucano.matplotlib.pyplot
import io.github.danielTucano.extensions.toPythonBooleanOrNone
import io.github.danielTucano.matplotlib.Axes
import io.github.danielTucano.matplotlib.Axes.Companion.axesNumber
import io.github.danielTucano.matplotlib.Figure
import io.github.danielTucano.matplotlib.Figure.Companion.figureNumber
import io.github.danielTucano.matplotlib.toKwargPythonDictOrNone
import io.github.danielTucano.python.PythonScriptBuilder
fun subplots(
nrows: Int = 1,
ncols: Int = 1,
sharex: Boolean = false,
sharey: Boolean = false,
squeeze: Boolean = true,
subplot_kw: Map? = null,
gridspec_kw: Map? = null
): Pair