package sklearn

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

None

val iter : [> tag ] Obj.t -> Dict.t Stdlib.Seq.t

None

val get : ?default:Py.Object.t -> key:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

D.get(k,d) -> Dk if k in D, else d. d defaults to None.

val items : [> tag ] Obj.t -> Py.Object.t

D.items() -> a set-like object providing a view on D's items

val keys : [> tag ] Obj.t -> Py.Object.t

D.keys() -> a set-like object providing a view on D's keys

val values : [> tag ] Obj.t -> Py.Object.t

D.values() -> an object providing a view on D's values

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.