Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/grizzly-dart/grizzly_series

Pandas-like Series and DataFrames for Dart
https://github.com/grizzly-dart/grizzly_series

csv data-series dataframe ndarray plotting scientific-computing series

Last synced: about 2 months ago
JSON representation

Pandas-like Series and DataFrames for Dart

Awesome Lists containing this project

README

        

# Grizzly Series

Pandas-like Series and DataFrames for Dart

## Usage

A simple usage example:

```dart
main() {
final ages =
new IntSeries([20, 22, 35], indices: ['Jon', 'Dany', 'Tyrion']);
final house = new StringSeries(['Stark', 'Targaryan', 'Lannister'],
indices: ['Jon', 'Dany', 'Tyrion']);

final df = new DataFrame(
{'age': ages.data, 'house': house.data},
indices: ages.indices);

print(df['age']);
print(df.index['Jon']);
print(df.pos[2]);
}
```

## TODO

[ ] Series
[ ] DataFrame
[ ] Plotting
[ ] Loading data
[ ] Numpy functionality
[ ] Interactive web interface
[ ] Statistical functions