From 4acf0ea4a10bf0b8a9181295dc9b8c9bbd180625 Mon Sep 17 00:00:00 2001
From: Bert Palm <bert.palm@ufz.de>
Date: Wed, 11 Sep 2019 20:29:48 +0200
Subject: [PATCH] Update Readme.md

---
 Readme.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Readme.md b/Readme.md
index e69de29..0bd5701 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)
-- 
GitLab