package sklearn

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

Module Partial_dependence.CountSource

Sourcetype tag = [
  1. | `Count
]
Sourcetype t = [ `Count | `Object ] Obj.t
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : [> tag ] Obj.t -> Py.Object.t
Sourceval create : ?start:Py.Object.t -> ?step:Py.Object.t -> unit -> t

Return a count object whose .__next__() method returns consecutive values.

Equivalent to: def count(firstval=0, step=1): x = firstval while 1: yield x x += step

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

Implement iter(self).

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.