Metadata-Version: 2.1
Name: spank
Version: 0.0.1
Summary: Swarm Intelligence in Python
Home-page: https://github.com/guofei9987/spank
Author: Guo Fei
Author-email: guofei9987@foxmail.com
License: MIT
Platform: linux
Platform: windows
Platform: macos
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas

## spank

Easier implement based on pandas

Select:
```python
sdf.select_expr('name as name1', '*', 'type as style_type',
                sdf.feature1 + 1,
                F.Value(np.sin(sdf.feature2)).alias("feature4"),
                F.Value(1))
```

Or filter
```python
sdf.filter_expr((sdf.sex == 'female') & (sdf.feature2 > 0.1))
```

