package sklearn

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

Module Utils.SequenceSource

Sourcetype tag = [
  1. | `Sequence
]
Sourcetype t = [ `Object | `Sequence ] Obj.t
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : [> tag ] Obj.t -> Py.Object.t
Sourceval get_item : index:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

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

None

Sourceval count : value:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

S.count(value) -> integer -- return number of occurrences of value

Sourceval index : ?start:Py.Object.t -> ?stop:Py.Object.t -> value:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

S.index(value, start, [stop]) -> integer -- return first index of value. Raises ValueError if the value is not present.

Supporting start and stop arguments is optional, but recommended.

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.