All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.jetbrains.letsPlot.intern.layer.stat.Bin2dStatParameters.kt Maven / Gradle / Ivy

/*
 * Copyright (c) 2021. JetBrains s.r.o.
 * Use of this source code is governed by the MIT license that can be found in the LICENSE file.
 */

package jetbrains.letsPlot.intern.layer.stat

import jetbrains.datalore.plot.config.Option.Stat
import jetbrains.letsPlot.intern.Options

interface Bin2dStatParameters : jetbrains.letsPlot.intern.layer.OptionsCapsule {
    val bins: Pair?
    val binWidth: Pair?
    val drop: Boolean?

    override fun seal() = Options.of(
        Stat.Bin2d.BINS to bins?.toList(),
        Stat.Bin2d.BINWIDTH to binWidth?.toList(),
        Stat.Bin2d.DROP to drop
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy