dataframe v0.3.0 DataFrame.Frame

Struct which defines a Frame, a 2D table with columns and rows information The fields are:

  • values - The values of the 2D table
  • index - The information of the rows
  • columns - The name of each column of the table

Summary

Types

t :: %DataFrame.Frame{columns: [any], index: [any], values: [[any], ...]}