Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.