pandart 0.0.1 copy "pandart: ^0.0.1" to clipboard
pandart: ^0.0.1 copied to clipboard

Pandas for Dart

Pandart 0.0.1 #

The missing Pandas for Dart.

Features #

  • Create DataFrame
  • Add or Subtract DataFrames
  • Use describe() to get summary statistics
  • More to come...

Getting started #

Install the package by adding the following to your pubspec.yaml file:

dependencies:
  pandart: ^0.0.1

Then import the package in your code:

import 'package:pandart/pandart.dart';

Usage #

void main() {
  final df1 = DataFrame({
    'a': [1, 2, 3],
    'bass': [4, 5, 6],
    'c': [7, 8, 29],
  });
  print(df1.mean());
}