pandart

Last updated:

0 purchases

pandart Image
pandart Images
Add to Cart

Description:

pandart

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
copied to clipboard
Then import the package in your code:
import 'package:pandart/pandart.dart';
copied to clipboard
Usage #
void main() {
final df1 = DataFrame({
'a': [1, 2, 3],
'bass': [4, 5, 6],
'c': [7, 8, 29],
});
print(df1.mean());
}

copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.