Every Data Scientist Should Use This Package

Manpreet Singh
2 min readMar 13, 2023

Welcome back! Data science is an amazing field with tons of development! So, let’s take a look at an amazing package that every data scientist should use, this is the pygwalker package! Luckily for us, this package is on GitHub, here is a link to their repo:

This specific package will turn your Pandas data frames into a Tableau style visualization! Here are some examples of this package:

To install this package, you can use the following command:

pip install pygwalker

Once installed, you can import this package by using the following commands:

import pandas as pd
import pygwalker as pyg

--

--