Polars.Series
val create : 'a Data_type.Typed.t -> string -> 'a list -> t
val createo : 'a Data_type.Typed.t -> string -> 'a option list -> t
val create' : 'a Data_type.Typed.t -> string -> 'a array -> t
val createo' : 'a Data_type.Typed.t -> string -> 'a option array -> t
val int : string -> int list -> t
val into : string -> int option list -> t
val float : string -> float list -> t
val floato : string -> float option list -> t
val float' : string -> floatarray -> t
val bool : string -> bool list -> t
val boolo : string -> bool option list -> t
val string : string -> string list -> t
val stringo : string -> string option list -> t
val date : string -> Naive_date.t list -> t
val dateo : string -> Naive_date.t option list -> t
val date' : string -> Core.Date.t list -> t
val dateo' : string -> Core.Date.t option list -> t
val datetime : string -> Naive_datetime.t list -> t
val datetimeo : string -> Naive_datetime.t option list -> t
val datetime' : string -> Core.Time_ns.t list -> t
val datetimeo' : string -> Core.Time_ns.t option list -> t
val duration : string -> Duration.t list -> t
val durationo : string -> Duration.t option list -> t
val duration' : string -> Core.Time_ns.Span.t list -> t
val durationo' : string -> Core.Time_ns.Span.t option list -> t
val time : string -> Naive_time.t list -> t
val timeo : string -> Naive_time.t option list -> t
val time' : string -> Core.Time_ns.Ofday.t list -> t
val timeo' : string -> Core.Time_ns.Ofday.t option list -> t
val date_range :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
(t, string) Core.result
val date_range_exn :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
t
val datetime_range :
?every:string ->
string ->
start:Naive_datetime.t ->
stop:Naive_datetime.t ->
(t, string) Core.result
val datetime_range_exn :
?every:string ->
string ->
start:Naive_datetime.t ->
stop:Naive_datetime.t ->
t
val datetime_range' :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
(t, string) Core.result
val datetime_range_exn' :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
t
val to_list : 'a Data_type.Typed.t -> t -> 'a list
val to_option_list : 'a Data_type.Typed.t -> t -> 'a option list
val get : 'a Data_type.Typed.t -> t -> int -> 'a option
val get_exn : 'a Data_type.Typed.t -> t -> int -> 'a
val map :
'a Data_type.Typed.t ->
'b Data_type.Typed.t ->
t ->
f:('a option -> 'b option) ->
t
val cast : ?strict:bool -> t -> to_:Data_type.t -> t
val name : t -> string
val rename : t -> name:string -> unit
val dtype : t -> Data_type.t
val to_data_frame : t -> Data_frame0.t
val estimated_size : t -> int
val fill_null : t -> strategy:Fill_null_strategy.t -> (t, string) Core.result
val fill_null_exn : t -> strategy:Fill_null_strategy.t -> t
val clear : t -> unit
Set this series to the empty series. This does not mutate any of the underlying chunks: If you constructed a dataframe using this series as an input or created a slice of the series, clearing this series will not clear the dataframe or clear the slice.
Clearing the series will cause the series to lose access to its previous underlying chunks, which will decrement any reference counts to those chunks.
val to_string_hum : t -> string
val print : t -> unit
val pp : Stdlib.Format.formatter -> t -> unit
module Expert : sig ... end