“Cómo hacer perfiles de pandas” Código de respuesta

Cómo hacer perfiles de pandas

//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

perfil de pandas

!pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip
  
from pandas_profiling import ProfileReport

profile = ProfileReport(df, title='Pandas Profiling Report', explorative=True)
profile.to_widgets()
Thankful Toucan

Cómo instalar perfiles de pandas

# You can download pandas-profiling by installing the version that runs on your computer for me this worked:
pip install pandas-profiling==1.1.0 # Paste this in the terminal
# Now type pip install pandas-profiling in your terminal it will say, Requirment already satisfied.
Raahim

Respuestas similares a “Cómo hacer perfiles de pandas”

Preguntas similares a “Cómo hacer perfiles de pandas”

Más respuestas relacionadas con “Cómo hacer perfiles de pandas” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código