Skip to main content
Module

x/denoforge/denoforge.js

Deno data science library similar to Python's Pandas. Port of the NodeJS library data-forge
Latest
import * as mod from "https://deno.land/x/denoforge@1.0.0/denoforge.js";

Variables

Class that represents a dataframe. A dataframe contains an indexed sequence of data records. Think of it as a spreadsheet or CSV file in memory.

Class that represents an index for a Series.

Class that represents a series containing a sequence of indexed values.

Functions

Deserialize a DataFrame from a CSV text string.

Deserialize a dataframe from a JSON text string.

Deserialize a dataframe from a JSON5 text string.

Convert a regular JavaScript obejct to a dataframe. Each row in the dataframe represents a field from the object.

Generate a data-frame containing a matrix of values.

Generate a series from a range of numbers.

Replicate a particular value N times to create a series.