diff --git a/Readme.md b/Readme.md index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0bd57012b46a70e6b9c0305b297132d0a487b997 100644 --- a/Readme.md +++ b/Readme.md @@ -0,0 +1,11 @@ +Features +-------- + +* dictionary of Series (dios) +* fast as pd.DataFrame +* every 'column' has its own index +* use very less memory then a disalignd pd.Dataframe +* `dios[var]` where `var` can be a list, slice, string +* `dios[ts,var]` where `ts` can be a slice (`ts:ts`) a single timestamp, or anything pd.Series will eat +* `+,-,*,/,//,%` and `==,!=,>,>=,<=,<` and `~,&,|,^` and `is, in` implemented +* run **any** method from pd.Series on dios with `dios.pipe(pd.Series.method)` or `dios.foreach()` (simple alias)