Monday, August 27, 2018

How to Run Parallel Data Analysis in Python using Dask Dataframes

Here is the link

https://towardsdatascience.com/trying-out-dask-dataframes-in-python-for-fast-data-analysis-in-parallel-aa960c18a915

Wednesday, August 15, 2018

Python dataframe remove non ascii words

df.text.replace({r'[^\x00-\x7F]+':''}, regex=True, inplace=True)
text is the column name in dataframe df