Intro python data science

Práctica 09: exportar dataframe

Vamos a ver cómo exportar dataframe de pandas:

  • Punto 1: En formato excel
  • Punto 2: En formato csv

Punto 0:

In [ ]:
# importar pandas
import pandas as pd
In [ ]:
# datos de RRSS 2020
fbk = ['Facebook', 2449, True, 2006]
twt = ['Twitter', 339, False, 2006]
ig = ['Instagram', 1000, True, 2010]
yt = ['YouTube', 2000, False, 2005]
lkn = ['LinkedIn', 663, False, 2003]
wsp = ['WhatsApp', 1600, True, 2009]
In [ ]:
lista_rrss = [fbk, twt, ig, yt, lkn, wsp]
In [ ]:
# crear dataframe a partir de listas
df_rrss=pd.DataFrame(lista_rrss,
            columns = ['Nombre', 'Cantidad', 'ES_FBK', 'Anio'])
df_rrss

Punto 1:

In [ ]:
# Exportar df a excel
In [ ]:
# Exportar df a excel sin indices

Punto 2:

In [ ]:
# Expotar df a csv
In [ ]:
# Expotar df a csv sin indices
In [ ]:
# Expotar df a csv sin indices y con puntos y comas
In [ ]:
# Recomendacion para codificación
In [ ]:
 

Gracias!

Espero que te lleves algo útil de este notebook 😀

Para más videos de programación para ciencia de datos

https://www.youtube.com/c/RafaGonzalezGouveia/

Si quieres realizar alguno de los cursos online de pago, ve a:

https://cursos.gonzalezgouveia.com

In [ ]: