Module OCamlR_base

Runtime R base library.

val inherits : OCamlR.Sexp.t -> string -> bool
module Environment : sig ... end
module type Matrix = sig ... end
module type Vector = sig ... end
module Numeric : Vector with type repr := float
module Logical : Vector with type repr := bool
module Integer : Vector with type repr := int
module Character : Vector with type repr := string
module Factor : sig ... end
type matrix = [
| `Numeric of Numeric.Matrix.t
| `Logical of Logical.Matrix.t
| `Integer of Integer.Matrix.t
| `Factor of Factor.Matrix.t
| `Character of Character.Matrix.t
]
module List_ : sig ... end
module Dataframe : sig ... end
val sample : ?⁠replace:bool -> ?⁠prob:float array -> size:int -> float array -> float array
val readRDS : string -> OCamlR.Sexp.t
val saveRDS : ?⁠ascii:bool -> ?⁠compress:bool -> file:string -> OCamlR.Sexp.t -> unit