MESGETUI INFORMASI STATISTIK DARI SUATU DATASET SECARA CEPAT.

import pandas as pd

csv_data = pd.read_csv("https://storage.googleapis.com/dqlab-dataset/shopping_data.csv")

print(csv_data.describe(include='all'))
Abe N