package scipy

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type tag = [
  1. | `CKDTreeNode
]
type t = [ `CKDTreeNode | `Object ] Obj.t
val of_pyobject : Py.Object.t -> t
val to_pyobject : [> tag ] Obj.t -> Py.Object.t
val level : t -> int

Attribute level: get value or raise Not_found if None.

val level_opt : t -> int option

Attribute level: get value as an option.

val split_dim : t -> int

Attribute split_dim: get value or raise Not_found if None.

val split_dim_opt : t -> int option

Attribute split_dim: get value as an option.

val split : t -> float

Attribute split: get value or raise Not_found if None.

val split_opt : t -> float option

Attribute split: get value as an option.

val children : t -> int

Attribute children: get value or raise Not_found if None.

val children_opt : t -> int option

Attribute children: get value as an option.

val data_points : t -> Py.Object.t

Attribute data_points: get value or raise Not_found if None.

val data_points_opt : t -> Py.Object.t option

Attribute data_points: get value as an option.

val indices : t -> Py.Object.t

Attribute indices: get value or raise Not_found if None.

val indices_opt : t -> Py.Object.t option

Attribute indices: get value as an option.

val lesser : t -> Py.Object.t

Attribute lesser: get value or raise Not_found if None.

val lesser_opt : t -> Py.Object.t option

Attribute lesser: get value as an option.

val greater : t -> Py.Object.t

Attribute greater: get value or raise Not_found if None.

val greater_opt : t -> Py.Object.t option

Attribute greater: get value as an option.

val to_string : t -> string

Print the object to a human-readable representation.

val show : t -> string

Print the object to a human-readable representation.

val pp : Stdlib.Format.formatter -> t -> unit

Pretty-print the object to a formatter.