package scipy

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Ckdtree.CKDTreeNodeSource

Sourcetype tag = [
  1. | `CKDTreeNode
]
Sourcetype t = [ `CKDTreeNode | `Object ] Obj.t
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : [> tag ] Obj.t -> Py.Object.t
Sourceval level : t -> int

Attribute level: get value or raise Not_found if None.

Sourceval level_opt : t -> int option

Attribute level: get value as an option.

Sourceval split_dim : t -> int

Attribute split_dim: get value or raise Not_found if None.

Sourceval split_dim_opt : t -> int option

Attribute split_dim: get value as an option.

Sourceval split : t -> float

Attribute split: get value or raise Not_found if None.

Sourceval split_opt : t -> float option

Attribute split: get value as an option.

Sourceval children : t -> int

Attribute children: get value or raise Not_found if None.

Sourceval children_opt : t -> int option

Attribute children: get value as an option.

Sourceval data_points : t -> Py.Object.t

Attribute data_points: get value or raise Not_found if None.

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

Attribute data_points: get value as an option.

Sourceval indices : t -> Py.Object.t

Attribute indices: get value or raise Not_found if None.

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

Attribute indices: get value as an option.

Sourceval lesser : t -> Py.Object.t

Attribute lesser: get value or raise Not_found if None.

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

Attribute lesser: get value as an option.

Sourceval greater : t -> Py.Object.t

Attribute greater: get value or raise Not_found if None.

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

Attribute greater: get value as an option.

Sourceval to_string : t -> string

Print the object to a human-readable representation.

Sourceval show : t -> string

Print the object to a human-readable representation.

Sourceval pp : Format.formatter -> t -> unit

Pretty-print the object to a formatter.