“Profil panda” Kod odpowiedzi

Jak robić profilowanie pandy

//get the latest version of pandas_profiling
import numpy as np
import pandas as pd
import pandas_profiling

df1=pd.read_csv(<File path>)

profile = df1.profile_report(title="<give any name you want>")
profile.to_file(output_file="<givefilename>.html")
Xanthous Xenomorph

Profil panda

profile = ProfileReport(df, title="Pandas Profiling Report", explorative=True)
Fair Fowl

Odpowiedzi podobne do “Profil panda”

Pytania podobne do “Profil panda”

Więcej pokrewnych odpowiedzi na “Profil panda” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu