Polars.Seriesval create : 'a Data_type.Typed.t -> string -> 'a list -> tval createo : 'a Data_type.Typed.t -> string -> 'a option list -> tval create' : 'a Data_type.Typed.t -> string -> 'a array -> tval createo' : 'a Data_type.Typed.t -> string -> 'a option array -> tval int : string -> int list -> tval into : string -> int option list -> tval float : string -> float list -> tval floato : string -> float option list -> tval float' : string -> floatarray -> tval bool : string -> bool list -> tval boolo : string -> bool option list -> tval string : string -> string list -> tval stringo : string -> string option list -> tval date : string -> Naive_date.t list -> tval dateo : string -> Naive_date.t option list -> tval date' : string -> Core.Date.t list -> tval dateo' : string -> Core.Date.t option list -> tval datetime : string -> Naive_datetime.t list -> tval datetimeo : string -> Naive_datetime.t option list -> tval datetime' : string -> Core.Time_ns.t list -> tval datetimeo' : string -> Core.Time_ns.t option list -> tval duration : string -> Duration.t list -> tval durationo : string -> Duration.t option list -> tval duration' : string -> Core.Time_ns.Span.t list -> tval durationo' : string -> Core.Time_ns.Span.t option list -> tval time : string -> Naive_time.t list -> tval timeo : string -> Naive_time.t option list -> tval time' : string -> Core.Time_ns.Ofday.t list -> tval timeo' : string -> Core.Time_ns.Ofday.t option list -> tval date_range :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
(t, string) Core.resultval date_range_exn :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
tval datetime_range :
?every:string ->
string ->
start:Naive_datetime.t ->
stop:Naive_datetime.t ->
(t, string) Core.resultval datetime_range_exn :
?every:string ->
string ->
start:Naive_datetime.t ->
stop:Naive_datetime.t ->
tval datetime_range' :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
(t, string) Core.resultval datetime_range_exn' :
?every:string ->
string ->
start:Core.Date.t ->
stop:Core.Date.t ->
tval to_list : 'a Data_type.Typed.t -> t -> 'a listval to_option_list : 'a Data_type.Typed.t -> t -> 'a option listval get : 'a Data_type.Typed.t -> t -> int -> 'a optionval get_exn : 'a Data_type.Typed.t -> t -> int -> 'aval map :
'a Data_type.Typed.t ->
'b Data_type.Typed.t ->
t ->
f:('a option -> 'b option) ->
tval cast : ?strict:bool -> t -> to_:Data_type.t -> tval name : t -> stringval rename : t -> name:string -> unitval dtype : t -> Data_type.tval to_data_frame : t -> Data_frame0.tval estimated_size : t -> intval fill_null : t -> strategy:Fill_null_strategy.t -> (t, string) Core.resultval fill_null_exn : t -> strategy:Fill_null_strategy.t -> tval clear : t -> unitSet 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 -> stringval print : t -> unitval pp : Stdlib.Format.formatter -> t -> unitmodule Expert : sig ... end