Released on May 24, 2022
What's New
WordCloud App on Visualization
The new visualization app using WordCloud library is added. Now you can make wordcloud more easily.
![image](https://user-images.githubusercontent.com/83636412/170019811-f9ceda49-790e-44c7-9a66-14cb8a23f9f5.png)
Data Selector
You can use minimized version of Subset App by clicking filter icon.
This new component has added on Seaborn and WordCloud App.
![image](https://user-images.githubusercontent.com/83636412/170020121-3df27fe2-171f-4e36-92a9-d540794f40cb.png)
![image](https://user-images.githubusercontent.com/83636412/170020321-3d711405-4887-48ba-b187-954169dcb761.png)
Bug Fixes & Improvements
Visualization
Seaborn App loads and saves its values more clearly.
Countplot is added on Seaborn App.
Fixed some spell mistakes on Seaborn App.
New operators for adding conditions on Subset
You can use 'contains', 'not contains', 'startswith', 'endswith' on Subset App.
contains
df1.loc[(df['manufacturer'].str.contains('aud')), :]
not contains
df1.loc[(~df['manufacturer'].str.contains('aud')), :]
startswith
df1.loc[(df['manufacturer'].str.startswith('aud')), :]
endswith
df1.loc[(~df['manufacturer'].str.endswith('aud')), :]