ralbright-insiderscore

Results 2 issues of ralbright-insiderscore

Great medium article, I really enjoyed it. You are missing stopwords removal in your readme.md file though. You might want to update that. I took the liberty of applying stop...

```python import pandas as pd import ipydatagrid import traitlets print(ipydatagrid.__version__) print(traitlets.__version__) print(pd.__version__) test_df = pd.DataFrame({'a': [1,2,3], 'b': [4,5,6]}) grid = ipydatagrid.DataGrid(test_df) grid.transform( [ {"type": "filter", "operator": ">", "column": "b", "value":...