package sklearn

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

x.__getitem__(y) <==> xy

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

Implement iter(self).

val __setitem__ : key:Py.Object.t -> value:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

Set selfkey to value.

val fromkeys : ?value:Py.Object.t -> iterable:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

Create a new dictionary with keys from iterable and values set to value.

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

Return the value for key if key is in the dictionary, else default.

val pop : ?d:Py.Object.t -> k:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

D.pop(k,d) -> v, remove specified key and return the corresponding value. If key is not found, d is returned if given, otherwise KeyError is raised

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

Remove and return a (key, value) pair as a 2-tuple.

Pairs are returned in LIFO (last-in, first-out) order. Raises KeyError if the dict is empty.

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

Insert key with a value of default if key is not in the dictionary.

Return the value for key if key is in the dictionary, else default.

val update : ?e:Py.Object.t -> ?f:(string * Py.Object.t) list -> [> tag ] Obj.t -> Py.Object.t

D.update(E, **F) -> None. Update D from dict/iterable E and F. If E is present and has a .keys() method, then does: for k in E: Dk = Ek If E is present and lacks a .keys() method, then does: for k, v in E: Dk = v In either case, this is followed by: for k in F: Dk = Fk

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.