package owl-base

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

Module Owl_prettySource

Pretty print the n-dimensional array

Ndarray pretty printer
Sourceval pp_dsnda : Format.formatter -> ('a, 'b, 'c) Bigarray.Genarray.t -> unit

``pp_dsnda`` is the pretty printer for n-dimensional arrays.

Sourceval dsnda_to_string : ?header:bool -> ?max_row:int -> ?max_col:int -> ?elt_to_str_fun:('a -> string) -> ('a, 'b, Bigarray.c_layout) Bigarray.Genarray.t -> string

``dsnda_to_string x`` converts ``x`` into a string for pretty printing

Sourceval print_dsnda : ?header:bool -> ?max_row:int -> ?max_col:int -> ?elt_to_str_fun:('a -> string) -> ?formatter:Format.formatter -> ('a, 'b, Bigarray.c_layout) Bigarray.Genarray.t -> unit

``print_dsnda`` provides the better control of pretty printing function of owl's n-dimensional array. max_row and max_col specify the maximum number of rows and columns to display. header specifies whether or not to print out the headers. fmt is the function to format every element into string.

Dataframe pretty printer
Sourceval pp_dataframe : Format.formatter -> Owl_dataframe.t -> unit

``pp_dataframe`` is the pretty printer for dataframe.

Sourceval dataframe_to_string : ?header:bool -> ?names:string array -> ?max_row:int -> ?max_col:int -> ?elt_to_str_fun:(Owl_dataframe.elt -> string) -> Owl_dataframe.t -> string

``dataframe_to_string x`` converts ``x`` into a string for pretty printing

Sourceval print_dataframe : ?header:bool -> ?names:string array -> ?max_row:int -> ?max_col:int -> ?elt_to_str_fun:(Owl_dataframe.elt -> string) -> Format.formatter -> Owl_dataframe.t -> unit

``print_dataframe x`` converts ``x`` into a string for pretty printing

OCaml

Innovation. Community. Security.