nodejs-polars
Version:
Polars: Blazingly fast DataFrames in Rust, Python, Node.js, R and SQL
10 lines (9 loc) • 322 B
TypeScript
import { type Series } from ".";
import { DataFrame } from "../dataframe";
export interface SeriesStructFunctions {
fields: string[];
toFrame(): DataFrame;
field(name: string): Series;
renameFields(names: string[]): Series;
}
export declare const SeriesStructFunctions: (_s: any) => SeriesStructFunctions;