Comment lire et écrire des fichiers – Real Python

By | décembre 2, 2019

python pour débutant

Pandas est un package Python puissant et flexible qui vous permet de travailler avec des données étiquetées et des séries chronologiques. Il fournit également des méthodes de statistiques, permet le traçage, et plus encore. Une des caractéristiques essentielles des Pandas est sa capacité à écrire et à lire des fichiers Excel, CSV et de nombreux autres types de fichiers. Fonctionne comme les pandas read_csv () méthode vous permet de travailler avec des fichiers efficacement. Vous pouvez les utiliser pour enregistrer les données et les étiquettes des objets Pandas dans un fichier et les charger ultérieurement en tant que Pandas. Séries ou Trame de données instances.

Dans ce tutoriel, vous apprendrez:

  • Ce que le Outils IO de pandas API est
  • Comment lire et écrire des données vers et à partir de fichiers
  • Comment travailler avec divers formats de fichiers
  • Comment travailler avec Big Data efficacement

Commençons par lire et écrire des fichiers!

Installer des pandas

Le code de ce tutoriel est exécuté avec CPython 3.7.4 et Pandas 0.25.1. Il serait utile de vous assurer que vous avez les dernières versions de Python et Pandas sur votre ordinateur. Vous souhaiterez peut-être créer un nouvel environnement virtuel et installer les dépendances pour ce didacticiel.

Tout d’abord, vous aurez besoin de la bibliothèque de pandas. Vous l'avez peut-être déjà installé. Si vous ne le faites pas, vous pouvez l’installer avec pip:

Une fois le processus d'installation terminé, Pandas devrait être installé et prêt.

Anaconda est une excellente distribution Python fournie avec Python, de nombreux paquets utiles comme Pandas et un gestionnaire de paquets et d’environnement appelé Conda. Pour en savoir plus sur Anaconda, consultez la rubrique Configuration de Python pour l'apprentissage automatique sous Windows.

Si vous n'avez pas de pandas dans votre environnement virtuel, vous pouvez l'installer avec Conda:

Conda est puissant car il gère les dépendances et leurs versions. Pour en savoir plus sur le travail avec Conda, vous pouvez consulter la documentation officielle.

Préparation des données

Dans ce didacticiel, vous utiliserez les données relatives à 20 pays. Voici un aperçu des données et des sources avec lesquelles vous allez travailler:

  • Pays est indiqué par le nom du pays. Chaque pays figure dans la liste des 10 premiers pour la population, la superficie ou le produit intérieur brut (PIB). Les étiquettes de ligne pour l'ensemble de données sont les codes de pays à trois lettres définis dans l'ISO 3166-1. Le libellé de la colonne pour le jeu de données est PAYS.

  • Population est exprimé en millions. Les données proviennent d'une liste de pays et de dépendances par population sur Wikipedia. Le libellé de la colonne pour le jeu de données est POP.

  • Région est exprimé en milliers de kilomètres carrés. Les données proviennent d'une liste de pays et de dépendances par région sur Wikipedia. Le libellé de la colonne pour le jeu de données est RÉGION.

  • Produit intérieur brut est exprimé en millions de dollars américains, selon les données des Nations Unies pour 2017. Vous pouvez trouver ces données dans la liste des pays par PIB nominal sur Wikipedia. Le libellé de la colonne pour le jeu de données est PIB.

  • Continent est l’Afrique, l’Asie, l’Océanie, l’Europe, l’Amérique du Nord ou l’Amérique du Sud. Vous pouvez également trouver cette information sur Wikipedia. Le libellé de la colonne pour le jeu de données est CONT.

  • Le jour de l'indépendance est une date qui commémore l’indépendance d’une nation. Les données proviennent de la liste des journées de l'indépendance nationale sur Wikipedia. Les dates sont affichées au format ISO 8601. Les quatre premiers chiffres représentent l'année, les deux suivants le mois et les deux derniers le jour du mois. Le libellé de la colonne pour le jeu de données est IND_DAY.

Voici à quoi ressemblent les données sous forme de tableau:

PAYS POP RÉGION PIB CONT IND_DAY
CHN Chine 1398.72 9596.96 12234.78 Asie
INDIANA Inde 1351.16 3287.26 2575.67 Asie 1947-08-15
Etats-Unis NOUS 329,74 9833.52 19485.39 Amérique du Nord 1776-07-04
IDN Indonésie 268.07 1910,93 1015.54 Asie [1945-08-17[1945-08-17
SOUTIEN-GORGE Brésil 210.32 8515.77 2055.51 Amérique du Sud 1822-09-07
PAK Pakistan 205.71 881,91 302.14 Asie 1947-08-14
NGA Nigeria 200.96 923.77 375,77 Afrique 1960-10-01
BGD Bangladesh 167.09 147,57 245.63 Asie 1971-03-26
RUS Russie 146.79 17098.25 1530,75 1992-06-12
MEX Mexique 126,58 1964.38 1158.23 Amérique du Nord 1810-09-16
JPN Japon 126.22 377,97 4872.42 Asie
DEU Allemagne 83.02 357.11 3693.20 L'Europe 
FRA France 67.02 640.68 2582.49 L'Europe  1789-07-14
GBR Royaume-Uni 66,44 242.50 2631.23 L'Europe 
ITA Italie 60,36 301.34 1943.84 L'Europe 
ARG Argentine 44,94 2780.40 637,49 Amérique du Sud 1816-07-09
DZA Algérie 43.38 2381.74 167,56 Afrique 1962-07-05
POUVEZ Canada 37,59 9984.67 1647.12 Amérique du Nord 1867-07-01
AUS Australie 25,47 7692.02 1408.68 Océanie
KAZ Kazakhstan 18,53 2724.90 159.41 Asie 1991-12-16

Vous remarquerez peut-être que certaines des données sont manquantes. Par exemple, le continent russe n'est pas spécifié car il s'étend à la fois en Europe et en Asie. Plusieurs jours d'indépendance sont également manquants car la source de données les omet.

Vous pouvez organiser ces données en Python à l'aide d'un dictionnaire imbriqué:

Les données = 
    'CHN': 'PAYS': 'Chine', 'POP': 1_398.72, 'RÉGION': 9_596.96,
            'PIB': 12_234.78, 'CONT': 'Asie',
    'INDIANA': 'PAYS': 'Inde', 'POP': 1_351.16, 'RÉGION': 3_287.26,
            'PIB': 2_575.67, 'CONT': 'Asie', 'IND_DAY': '1947-08-15',
    'ETATS-UNIS': 'PAYS': 'NOUS', 'POP': 329,74, 'RÉGION': 9_833.52,
            'PIB': 19_485.39, 'CONT': 'Amérique du Nord',
            'IND_DAY': '1776-07-04',
    'IDN': 'PAYS': 'Indonésie', 'POP': 268.07, 'RÉGION': 1_910.93,
            'PIB': 1_015.54, 'CONT': 'Asie', 'IND_DAY': '1945-08-17',
    'SOUTIEN-GORGE': 'PAYS': 'Brésil', 'POP': 210.32, 'RÉGION': 8_515.77,
            'PIB': 2_055.51, 'CONT': 'S.America', 'IND_DAY': '1822-09-07',
    'PAK': 'PAYS': 'Pakistan', 'POP': 205.71, 'RÉGION': 881,91,
            'PIB': 302.14, 'CONT': 'Asie', 'IND_DAY': '1947-08-14',
    'NGA': 'PAYS': 'Nigeria', 'POP': 200.96, 'RÉGION': 923.77,
            'PIB': 375,77, 'CONT': 'Afrique', 'IND_DAY': '1960-10-01',
    'BGD': 'PAYS': 'Bangladesh', 'POP': 167.09, 'RÉGION': 147,57,
            'PIB': 245.63, 'CONT': 'Asie', 'IND_DAY': '1971-03-26',
    'RUS': 'PAYS': 'Russie', 'POP': 146.79, 'RÉGION': 17_098.25,
            'PIB': 1_530.75, 'IND_DAY': '1992-06-12',
    'MEX': 'PAYS': 'Mexique', 'POP': 126,58, 'RÉGION': 1_964.38,
            'PIB': 1_158.23, 'CONT': 'Amérique du Nord', 'IND_DAY': '1810-09-16',
    'JPN': 'PAYS': 'Japon', 'POP': 126.22, 'RÉGION': 377,97,
            'PIB': 4_872.42, 'CONT': 'Asie',
    'DEU': 'PAYS': 'Allemagne', 'POP': 83.02, 'RÉGION': 357.11,
            'PIB': 3_693.20, 'CONT': 'L'Europe ',
    'FRA': 'PAYS': 'France', 'POP': 67.02, 'RÉGION': 640.68,
            'PIB': 2_582.49, 'CONT': 'L'Europe ', 'IND_DAY': '1789-07-14',
    'GBR': 'PAYS': 'ROYAUME-UNI', 'POP': 66,44, 'RÉGION': 242.50,
            'PIB': 2_631.23, 'CONT': 'L'Europe ',
    'ITA': 'PAYS': 'Italie', 'POP': 60,36, 'RÉGION': 301.34,
            'PIB': 1_943.84, 'CONT': 'L'Europe ',
    'ARG': 'PAYS': 'Argentine', 'POP': 44,94, 'RÉGION': 2_780.40,
            'PIB': 637,49, 'CONT': 'S.America', 'IND_DAY': '1816-07-09',
    'DZA': 'PAYS': 'Algérie', 'POP': 43.38, 'RÉGION': 2_381.74,
            'PIB': 167,56, 'CONT': 'Afrique', 'IND_DAY': '1962-07-05',
    'POUVEZ': 'PAYS': 'Canada', 'POP': 37,59, 'RÉGION': 9_984.67,
            'PIB': 1_647.12, 'CONT': 'Amérique du Nord', 'IND_DAY': '1867-07-01',
    'AUS': 'PAYS': 'Australie', 'POP': 25,47, 'RÉGION': 7_692.02,
            'PIB': 1_408.68, 'CONT': 'Océanie',
    'KAZ': 'PAYS': 'Kazakhstan', 'POP': 18,53, 'RÉGION': 2_724.90,
            'PIB': 159.41, 'CONT': 'Asie', 'IND_DAY': '1991-12-16'


des colonnes = ('PAYS', 'POP', 'RÉGION', 'PIB', 'CONT', 'IND_DAY')

Chaque ligne de la table est écrite en tant que dictionnaire interne dont les clés sont les noms de colonne et les valeurs les données correspondantes. Ces dictionnaires sont ensuite collectés sous la forme de valeurs dans l’extérieur. Les données dictionnaire. Les touches correspondantes pour Les données sont les codes de pays à trois lettres.

Vous pouvez utiliser ceci Les données créer une instance de pandas Trame de données. Tout d’abord, vous devez importer des pandas:

>>>

>>> importation pandas comme pd

Maintenant que vous avez importé des pandas, vous pouvez utiliser le Trame de données constructeur et Les données créer un Trame de données objet.

Les données est organisé de manière à ce que les codes de pays correspondent aux colonnes. Vous pouvez inverser les lignes et les colonnes d'un Trame de données avec la propriété .T:

>>>

>>> df = pd.Trame de données(Les données=Les données).T
>>> df
                                PAYS POP RÉGIONAL PIB CONT IND_DAY
CHN Chine 1398.72 9596.96 12234.8 Asie NaN
IND Inde 1351,16 3287,26 2575,67 Asie 1947-08-15
USA 329.74 9833.52 19485.4 Amérique du Nord 1776-07-04
IDN Indonésie 268.07 1910.93 1015.54 Asie 1945-08-17
BRA Brésil 210.32 8515.77 2055.51 Amérique du Sud 1822-09-07
PAK Pakistan 205.71 881.91 302.14 Asie 1947-08-14
NGA Nigeria 200.96 923.77 375.77 Afrique 1960-10-01
BGD Bangladesh 167,09 147,57 245,63 Asie 1971-03-26
RUS Russie 146.79 17098.2 1530.75 NaN 1992-06-12
MEX Mexique 126,58 1964,38 1158,23 Amérique du Nord 1810-09-16
JPN Japon 126.22 377.97 4872.42 Asie NaN
DEU Allemagne 83.02 357.11 3693.2 Europe NaN
FRA France 67.02 640.68 2582.49 Europe 1789-07-14
GBR UK 66.44 242.5 2631.23 Europe NaN
ITA Italy 60.36 301.34 1943.84 Europe NaN
ARG Argentina 44.94 2780.4 637.49 S.America 1816-07-09
DZA Algérie 43.38 2381.74 167.56 Afrique 1962-07-05
CAN Canada 37.59 9984.67 1647.12 Amérique du Nord 1867-07-01
AUS Australia 25.47 7692.02 1408.68 Oceania NaN
KAZ Kazakhstan 18.53 2724.9 159.41 Asia 1991-12-16

Maintenant vous avez votre Trame de données objet renseigné avec les données de chaque pays.

Les versions de Python antérieures à 3.6 ne garantissaient pas l'ordre des clés dans les dictionnaires. Pour vous assurer que l'ordre des colonnes est maintenu pour les anciennes versions de Python et Pandas, vous pouvez spécifier index = colonnes:

>>>

>>> df = pd.Trame de données(Les données=Les données, indice=des colonnes).T

Maintenant que vous avez préparé vos données, vous êtes prêt à commencer à travailler avec des fichiers!

Utiliser les pandas read_csv () et .to_csv () Les fonctions

Un fichier CSV (valeurs séparées par des virgules) est un fichier texte avec un .csv extension qui contient des données tabulaires. C'est l'un des formats de fichiers les plus populaires pour stocker de grandes quantités de données. Chaque ligne du fichier CSV représente une seule ligne de la table. Les valeurs de la même ligne sont par défaut séparées par des virgules, mais vous pouvez remplacer le séparateur par un point-virgule, une tabulation, un espace ou un autre caractère.

Écrire un fichier CSV

Vous pouvez sauvegarder vos pandas Trame de données sous forme de fichier CSV avec .to_csv ():

>>>

>>> df.to_csv('data.csv')

C'est ça! Vous avez créé le fichier data.csv dans votre répertoire de travail actuel. Vous pouvez développer le bloc de code ci-dessous pour voir à quoi votre fichier CSV devrait ressembler:

,PAYS,POP,RÉGION,PIB,CONT,IND_DAY
CHN,Chine,1398.72,9596.96,12234.78,Asie,
INDIANA,Inde,1351.16,3287.26,2575.67,Asie,1947-08-15
Etats-Unis,NOUS,329.74,9833.52,19485.39,N.Amérique,1776-07-04
IDN,Indonésie,268.07,1910.93,1015.54,Asie,[1945[1945-08-17
SOUTIEN-GORGE,Brésil,210.32,8515.77,2055.51,S.Amérique,1822-09-07
PAK,Pakistan,205.71,881.91,302.14,Asie,1947-08-14
NGA,Nigeria,200.96,923.77,375.77,Afrique,1960-dix-01
BGD,Bangladesh,167.09,147.57,245.63,Asie,1971-03-26
RUS,Russie,146.79,17098.25,1530.75,,1992-06-12
MEX,Mexique,126.58,1964.38,1158.23,N.Amérique,1810-09-16
JPN,Japon,126.22,377.97,4872.42,Asie,
DEU,Allemagne,83.02,357.11,3693.2,L'Europe ,
FRA,France,67.02,640.68,2582.49,L'Europe ,1789-07-14
GBR,Royaume-Uni,66.44,242.5,2631.23,L'Europe ,
ITA,Italie,60.36,301.34,1943.84,L'Europe ,
ARG,Argentine,44.94,2780.4,637.49,S.Amérique,1816-07-09
DZA,Algérie,43.38,2381.74,167.56,Afrique,1962-07-05
POUVEZ,Canada,37.59,9984.67,1647.12,N.Amérique,1867-07-01
AUS,Australie,25.47,7692.02,1408.68,Océanie,
KAZ,Kazakhstan,18.53,2724.9,159.41,Asie,1991-12-16

Ce fichier texte contient les données séparées avec des virgules. La première colonne contient les étiquettes de ligne. Dans certains cas, vous les trouverez hors de propos. Si vous ne voulez pas les conserver, vous pouvez alors passer l'argument index = False à .to_csv ().

Lire un fichier CSV

Une fois vos données enregistrées dans un fichier CSV, vous voudrez probablement les charger et les utiliser de temps à autre. Vous pouvez le faire avec les pandas read_csv () une fonction:

>>>

>>> df = pd.read_csv('data.csv', index_col=0)
>>> df
                                PAYS POP RÉGIONAL PIB CONT IND_DAY
CHN Chine 1398.72 9596.96 12234.78 Asie NaN
IND Inde 1351,16 3287,26 2575,67 Asie 1947-08-15
USA 329.74 9833.52 19485.39 Amérique du Nord 1776-07-04
IDN Indonésie 268.07 1910.93 1015.54 Asie 1945-08-17
BRA Brésil 210.32 8515.77 2055.51 Amérique du Sud 1822-09-07
PAK Pakistan 205.71 881.91 302.14 Asie 1947-08-14
NGA Nigeria 200.96 923.77 375.77 Afrique 1960-10-01
BGD Bangladesh 167,09 147,57 245,63 Asie 1971-03-26
RUS Russie 146.79 17098.25 1530.75 NaN 1992-06-12
MEX Mexique 126,58 1964,38 1158,23 Amérique du Nord 1810-09-16
JPN Japon 126.22 377.97 4872.42 Asie NaN
DEU Allemagne 83.02 357.11 3693.20 Europe NaN
FRA France 67.02 640.68 2582.49 Europe 1789-07-14
GBR UK 66.44 242.50 2631.23 Europe NaN
ITA Italy 60.36 301.34 1943.84 Europe NaN
ARG Argentina 44.94 2780.40 637.49 S.America 1816-07-09
DZA Algérie 43.38 2381.74 167.56 Afrique 1962-07-05
CAN Canada 37.59 9984.67 1647.12 Amérique du Nord 1867-07-01
AUS Australia 25.47 7692.02 1408.68 Oceania NaN
KAZ Kazakhstan 18.53 2724.90 159.41 Asia 1991-12-16

Dans ce cas, les pandas read_csv () la fonction retourne un nouveau Trame de données avec les données et les étiquettes du fichier data.csv, que vous avez spécifié avec le premier argument. Cette chaîne peut être n’importe quel chemin valide, y compris les URL.

Le paramètre index_col spécifie la colonne du fichier CSV contenant les étiquettes de ligne. Vous affectez un index de colonne de base zéro à ce paramètre. Vous devez déterminer la valeur de index_col lorsque le fichier CSV contient les étiquettes de lignes pour éviter de les charger en tant que données.

Vous en apprendrez plus sur l’utilisation de Pandas avec des fichiers CSV plus loin dans ce tutoriel. Vous pouvez également consulter les sections Lecture et écriture de fichiers CSV en Python pour savoir comment gérer les fichiers CSV avec la bibliothèque csv intégrée à la bibliothèque Python.

Utilisation de pandas pour écrire et lire des fichiers Excel

Microsoft Excel est probablement le tableur le plus utilisé. Alors que les anciennes versions utilisaient binaire .xls fichiers, Excel 2007 a introduit le nouveau logiciel basé sur XML .xlsx fichier. Vous pouvez lire et écrire des fichiers Excel dans des pandas, similaires aux fichiers CSV. Cependant, vous devez d’abord installer les packages Python suivants:

Vous pouvez les installer en utilisant pip avec une seule commande:

$ pip installer xlwt openpyxl xlsxwriter xlrd

Vous pouvez également utiliser Conda:

$ conda installer xlwt openpyxl xlsxwriter xlrd

Veuillez noter que vous ne devez pas installer tout ces forfaits. Par exemple, vous n’avez pas besoin d’openpyxl et de XlsxWriter. Si vous allez travailler uniquement avec .xls fichiers, vous n’avez besoin d’aucun d’eux! Cependant, si vous avez l’intention de travailler uniquement avec .xlsx fichiers, vous aurez besoin d'au moins un d'entre eux, mais pas xlwt. Prenez le temps de choisir les packages qui conviennent à votre projet.

Écrire un fichier Excel

Une fois que vous avez installé ces paquets, vous pouvez enregistrer votre Trame de données dans un fichier Excel avec .exceller():

>>>

>>> df.exceller('data.xlsx')

L'argument 'data.xlsx' représente le fichier cible et, éventuellement, son chemin. L'instruction ci-dessus devrait créer le fichier data.xlsx dans votre répertoire de travail actuel. Ce fichier devrait ressembler à ceci:

mmst-pandas-rw-files-excel

La première colonne du fichier contient les étiquettes des lignes, tandis que les autres colonnes stockent des données.

Lire un fichier Excel

Vous pouvez charger des données à partir de fichiers Excel avec read_excel ():

>>>

>>> df = pd.read_excel('data.xlsx', index_col=0)
>>> df
                                PAYS POP RÉGIONAL PIB CONT IND_DAY
CHN Chine 1398.72 9596.96 12234.78 Asie NaN
IND Inde 1351,16 3287,26 2575,67 Asie 1947-08-15
USA 329.74 9833.52 19485.39 Amérique du Nord 1776-07-04
IDN Indonésie 268.07 1910.93 1015.54 Asie 1945-08-17
BRA Brésil 210.32 8515.77 2055.51 Amérique du Sud 1822-09-07
PAK Pakistan 205.71 881.91 302.14 Asie 1947-08-14
NGA Nigeria 200.96 923.77 375.77 Afrique 1960-10-01
BGD Bangladesh 167,09 147,57 245,63 Asie 1971-03-26
RUS Russie 146.79 17098.25 1530.75 NaN 1992-06-12
MEX Mexique 126,58 1964,38 1158,23 Amérique du Nord 1810-09-16
JPN Japon 126.22 377.97 4872.42 Asie NaN
DEU Allemagne 83.02 357.11 3693.20 Europe NaN
FRA France 67.02 640.68 2582.49 Europe 1789-07-14
GBR UK 66.44 242.50 2631.23 Europe NaN
ITA Italy 60.36 301.34 1943.84 Europe NaN
ARG Argentina 44.94 2780.40 637.49 S.America 1816-07-09
DZA Algérie 43.38 2381.74 167.56 Afrique 1962-07-05
CAN Canada 37.59 9984.67 1647.12 Amérique du Nord 1867-07-01
AUS Australia 25.47 7692.02 1408.68 Oceania NaN
KAZ Kazakhstan 18.53 2724.90 159.41 Asia 1991-12-16

read_excel () renvoie un nouveau Trame de données qui contient les valeurs de data.xlsx. Vous pouvez aussi utiliser read_excel () avec des feuilles de calcul OpenDocument, ou .ods des dossiers.

Vous en apprendrez plus sur l'utilisation de fichiers Excel plus tard dans ce didacticiel. Vous pouvez également consulter Utilisation de Pandas pour lire des fichiers Excel volumineux en Python.

Comprendre l'API Pandas IO

Pandas IO Tools est l’API qui vous permet d’enregistrer le contenu de Séries et Trame de données objets dans le presse-papiers, objets ou fichiers de différents types. Il permet également de charger des données à partir du presse-papiers, d’objets ou de fichiers.

Écrire des fichiers

Séries et Trame de données les objets ont des méthodes qui permettent d'écrire des données et des étiquettes dans le presse-papiers ou les fichiers. Ils sont nommés avec le motif .à_(), où est le type du fichier cible.

Vous avez appris à propos de .to_csv () et .exceller(), mais il y en a d'autres, y compris:

  • .to_json ()
  • .to_html ()
  • .to_sql ()
  • .to_pickle ()

Il y a encore plus de types de fichiers que vous pouvez écrire, cette liste n'est donc pas exhaustive.

Ces méthodes ont des paramètres spécifiant le chemin du fichier cible où vous avez enregistré les données et les étiquettes. Ceci est obligatoire dans certains cas et facultatif dans d'autres. Si cette option est disponible et que vous choisissez de l'omettre, les méthodes renvoient les objets (tels que des chaînes ou iterables) avec le contenu de Trame de données instances.

Le paramètre optionnel compression décide comment compresser le fichier avec les données et les étiquettes. Vous en apprendrez plus à ce sujet plus tard. Il existe quelques autres paramètres, mais ils sont principalement spécifiques à une ou plusieurs méthodes. Vous n’allez pas entrer dans les détails ici.

Lire des fichiers

Les fonctions de pandas pour la lecture du contenu des fichiers sont nommées en utilisant le motif .lis_(), où indique le type de fichier à lire. Vous avez déjà vu les pandas read_csv () et read_excel () les fonctions. En voici quelques autres:

  • read_json ()
  • read_html ()
  • read_sql ()
  • read_pickle ()

Ces fonctions ont un paramètre qui spécifie le chemin du fichier cible. Il peut s'agir de n'importe quelle chaîne valide représentant le chemin, sur une machine locale ou dans une URL. D'autres objets sont également acceptables selon le type de fichier.

Le paramètre optionnel compression détermine le type de décompression à utiliser pour les fichiers compressés. Vous en apprendrez plus tard dans ce tutoriel. Il existe d’autres paramètres, mais ils sont spécifiques à une ou plusieurs fonctions. Vous n’allez pas entrer dans les détails ici.

Travailler avec différents types de fichiers

La bibliothèque de pandas offre un large éventail de possibilités pour enregistrer vos données dans des fichiers et charger des données à partir de fichiers. Dans cette section, vous en apprendrez plus sur l'utilisation des fichiers CSV et Excel. Vous verrez également comment utiliser d'autres types de fichiers, tels que JSON, les pages Web, les bases de données et les fichiers pickle Python.

Fichiers CSV

Vous avez déjà appris à lire et à écrire des fichiers CSV. Maintenant, approfondissons un peu les détails. Quand vous utilisez .to_csv () pour sauver votre Trame de données, vous pouvez fournir un argument pour le paramètre path_or_buff pour spécifier le chemin, le nom et l'extension du fichier cible.

path_or_buff est le premier argument .to_csv () aura. Il peut s'agir de n'importe quelle chaîne représentant un chemin de fichier valide incluant le nom du fichier et son extension. Vous avez vu cela dans un exemple précédent. Cependant, si vous omettez path_or_buff, puis .to_csv () ne créerez aucun fichier. Au lieu de cela, il retournera la chaîne correspondante:

>>>

>>> df = pd.Trame de données(Les données=Les données).T
>>> s = df.to_csv()
>>> impression(s)
, PAYS, POP, ZONE, PIB, CONT, IND_DAY
CHN, Chine, 1398.72.9596.96,12234.78, Asie,
IND, Inde, 1351.16.3287.26.27575.67, Asie, 1947-08-15
USA, USA, 329.74,9833.52,19485.39, Amérique du Nord, 1776-07-04
IDN, Indonésie, 268.07,1910.93,1015.54, Asie, 1945-08-17
BRA, Brésil, 210.32,8515.77,2055.51, Amérique du Sud, 1822-09-07
PAK, Pakistan, 205.71.881.91.302.14, Asie, 1947-08-14
NGA, Nigeria, 200.96.923.77.375,77, Afrique, 1960-10-01
BGD, Bangladesh, 167.09.147.57.245.63, Asie, 1971-03-26
Russie, 146.79.170.98,1530.75, 1992-06-12
MEX, Mexique, 126.58,1964.38,1158.23, Amérique du Nord, 1810-09-16
JPN, Japon, 126.22.377.97.4872.42, Asie,
DEU, Allemagne, 83.02.357.11.3693.2, Europe,
FRA, France, 67.02,640.68,2582.49, Europe, 1789-07-14
GBR, UK, 66.44.242.5.2631.23, Europe,
ITA, Italie, 60.36.301.34, 1943.84, Europe,
ARG, Argentine, 44.94.2780.4,637.49, Amérique du Sud, 1816-07-09
DZA, Algérie, 43.38.2381.74.167,167, Afrique, 1962-07-05
CAN, Canada, 37.59.9984.67,1647.12, Amérique du Nord, 1867-07-01
AUS, Australie, 25.47,7692.02,1408.68, Océanie,
KAZ, Kazakhstan, 18.53.2724.9.159.41, Asie, 1991-12-16

Maintenant vous avez la ficelle s au lieu d'un fichier CSV. Vous en avez aussi valeurs manquantes dans votre Trame de données objet. Par exemple, le continent pour la Russie et les journées de l'indépendance pour plusieurs pays (Chine, Japon, etc.) ne sont pas disponibles. En science des données et en apprentissage automatique, vous devez gérer les valeurs manquantes avec précaution. Les pandas excelle ici! Par défaut, les pandas utilisent la valeur NaN pour remplacer les valeurs manquantes.

Le continent qui correspond à la Russie en df est nan:

>>>

>>> df.loc[[[['RUS', 'CONT']
nan

Cet exemple utilise .loc[] pour obtenir des données avec les noms de lignes et de colonnes spécifiés.

Lorsque vous enregistrez votre Trame de données dans un fichier CSV, chaînes vides ('') représentera les données manquantes. Vous pouvez voir cela à la fois dans votre dossier data.csv et dans la ficelle s. Si vous souhaitez modifier ce comportement, utilisez le paramètre facultatif. na_rep:

>>>

>>> df.to_csv('new-data.csv', na_rep='(manquant)')

Ce code produit le fichier new-data.csv où les valeurs manquantes ne sont plus des chaînes vides. Vous pouvez développer le bloc de code ci-dessous pour voir à quoi ce fichier devrait ressembler:

,PAYS,POP,RÉGION,PIB,CONT,IND_DAY
CHN,Chine,1398.72,9596.96,12234.78,Asie, (manquant)
INDIANA,Inde,1351.16,3287.26,2575.67,Asie,1947-08-15
Etats-Unis,NOUS,329.74,9833.52,19485.39,N.Amérique,1776-07-04
IDN,Indonésie,268.07,1910.93,1015.54,Asie,[1945[1945-08-17
SOUTIEN-GORGE,Brésil,210.32,8515.77,2055.51,S.Amérique,1822-09-07
PAK,Pakistan,205.71,881.91,302.14,Asie,1947-08-14
NGA,Nigeria,200.96,923.77,375.77,Afrique,1960-dix-01
BGD,Bangladesh,167.09,147.57,245.63,Asie,1971-03-26
RUS,Russie,146.79,17098.25,1530.75, (manquant),1992-06-12
MEX,Mexique,126.58,1964.38,1158.23,N.Amérique,1810-09-16
JPN,Japon,126.22,377.97,4872.42,Asie, (manquant)
DEU,Allemagne,83.02,357.11,3693.2,L'Europe , (manquant)
FRA,France,67.02,640.68,2582.49,L'Europe ,1789-07-14
GBR,Royaume-Uni,66.44,242.5,2631.23,L'Europe , (manquant)
ITA,Italie,60.36,301.34,1943.84,L'Europe , (manquant)
ARG,Argentine,44.94,2780.4,637.49,S.Amérique,1816-07-09
DZA,Algérie,43.38,2381.74,167.56,Afrique,1962-07-05
POUVEZ,Canada,37.59,9984.67,1647.12,N.Amérique,1867-07-01
AUS,Australie,25.47,7692.02,1408.68,Océanie, (manquant)
KAZ,Kazakhstan,18.53,2724.9,159.41,Asie,1991-12-16

Maintenant, la ficelle '(manquant)' dans le fichier correspond à la nan valeurs de df.

Lorsque Pandas lit des fichiers, il considère la chaîne vide ('') et quelques autres comme valeurs manquantes par défaut:

  • 'nan'
  • '-nan'
  • 'N / A'
  • 'N / A'
  • 'NaN'
  • 'nul'

Si vous ne voulez pas ce comportement, vous pouvez passer keep_default_na = False aux pandas read_csv () une fonction. Pour spécifier d'autres étiquettes pour les valeurs manquantes, utilisez le paramètre na_values:

>>>

>>> pd.read_csv('new-data.csv', index_col=0, na_values='(manquant)')
                                PAYS POP RÉGIONAL PIB CONT IND_DAY
CHN Chine 1398.72 9596.96 12234.78 Asie NaN
IND Inde 1351,16 3287,26 2575,67 Asie 1947-08-15
USA 329.74 9833.52 19485.39 Amérique du Nord 1776-07-04
IDN Indonésie 268.07 1910.93 1015.54 Asie 1945-08-17
BRA Brésil 210.32 8515.77 2055.51 Amérique du Sud 1822-09-07
PAK Pakistan 205.71 881.91 302.14 Asie 1947-08-14
NGA Nigeria 200.96 923.77 375.77 Afrique 1960-10-01
BGD Bangladesh 167,09 147,57 245,63 Asie 1971-03-26
RUS Russie 146.79 17098.25 1530.75 NaN 1992-06-12
MEX Mexique 126,58 1964,38 1158,23 Amérique du Nord 1810-09-16
JPN Japon 126.22 377.97 4872.42 Asie NaN
DEU Allemagne 83.02 357.11 3693.20 Europe NaN
FRA France 67.02 640.68 2582.49 Europe 1789-07-14
GBR UK 66.44 242.50 2631.23 Europe NaN
ITA Italy 60.36 301.34 1943.84 Europe NaN
ARG Argentina 44.94 2780.40 637.49 S.America 1816-07-09
DZA Algérie 43.38 2381.74 167.56 Afrique 1962-07-05
CAN Canada 37.59 9984.67 1647.12 Amérique du Nord 1867-07-01
AUS Australia 25.47 7692.02 1408.68 Oceania NaN
KAZ Kazakhstan 18.53 2724.90 159.41 Asia 1991-12-16

Ici, vous avez marqué la chaîne '(manquant)' comme une nouvelle étiquette de données manquante, et Pandas l’a remplacée par nan quand il a lu le fichier.

Lorsque vous chargez des données à partir d'un fichier, Pandas affecte par défaut les types de données aux valeurs de chaque colonne. Vous pouvez vérifier ces types avec .dtypes:

>>>

>>> df = pd.read_csv('data.csv', index_col=0)
>>> df.types
PAYS objet
POP float64
ZONE float64
PIB float64
Objet CONT
Objet IND_DAY
dtype: objet

Les colonnes avec des chaînes et des dates ('PAYS', 'CONT', et 'IND_DAY') avoir le type de données objet. Pendant ce temps, les colonnes numériques contiennent des nombres à virgule flottante de 64 bits (float64).

Vous pouvez utiliser le paramètre type pour spécifier les types de données souhaités et parse_dates pour forcer l'utilisation de datetime:

>>>

>>> types = 'POP': 'float32', 'RÉGION': 'float32', 'PIB': 'float32'
>>> df = pd.read_csv('data.csv', index_col=0, type=types,
...                  parse_dates=[[[['IND_DAY'])
>>> df.types
PAYS objet
POP float32
ZONE float32
PIB float32
Objet CONT
IND_DAY datetime64[ns]
dtype: objet
>>> df[[[['IND_DAY']
CHN NaT
IND 1947-08-15
USA 1776-07-04
IDN 1945-08-17
Bra 1822-09-07
PAK 1947-08-14
NGA 1960-10-01
BGD 1971-03-26
RUS 1992-06-12
MEX 1810-09-16
JPN NaT
DEU NaT
FRA 1789-07-14
GBR NaT
ITA NaT
ARG 1816-07-09
DZA 1962-07-05
CAN 1867-07-01
AUS NaT
KAZ 1991-12-16
Nom: IND_DAY, type: datetime64[ns]

Maintenant, vous avez des nombres à virgule flottante 32 bits ()float32) comme spécifié avec type. Ceux-ci diffèrent légèrement des nombres originaux de 64 bits en raison de la plus petite précision. Les valeurs de la dernière colonne sont considérées comme des dates et ont le type de données datetime64. C’est pourquoi le NaN les valeurs de cette colonne sont remplacées par NaT.

Maintenant que vous avez des dates réelles, vous pouvez les enregistrer dans le format de votre choix:

>>>

>>> df = pd.read_csv('data.csv', index_col=0, parse_dates=[[[['IND_DAY'])
>>> df.to_csv('formated-data.csv', format de date='% B %ré,% Y ')

Ici, vous avez spécifié le paramètre format de date être '% B% d,% Y'. Vous pouvez développer le bloc de code ci-dessous pour voir le fichier résultant:

,PAYS,POP,RÉGION,PIB,CONT,IND_DAY
CHN,Chine,1398.72,9596.96,12234.78,Asie,
INDIANA,Inde,1351.16,3287.26,2575.67,Asie,"15 août 1947"
Etats-Unis,NOUS,329.74,9833.52,19485.39,N.Amérique,"04 juillet 1776"
IDN,Indonésie,268.07,1910.93,1015.54,Asie,"17 août 1945"
SOUTIEN-GORGE,Brésil,210.32,8515.77,2055.51,S.Amérique,"07 septembre 1822"
PAK,Pakistan,205.71,881.91,302.14,Asie,"14 août 1947"
NGA,Nigeria,200.96,923.77,375.77,Afrique,"1er octobre 1960"
BGD,Bangladesh,167.09,147.57,245.63,Asie,"26 mars 1971"
RUS,Russie,146.79,17098.25,1530.75,,"12 juin 1992"
MEX,Mexique,126.58,1964.38,1158.23,N.Amérique,"16 septembre 1810"
JPN,Japon,126.22,377.97,4872.42,Asie,
DEU,Allemagne,83.02,357.11,3693.2,L'Europe ,
FRA,France,67.02,640.68,2582.49,L'Europe ,"14 juillet 1789"
GBR,Royaume-Uni,66.44,242.5,2631.23,L'Europe ,
ITA,Italie,60.36,301.34,1943.84,L'Europe ,
ARG,Argentine,44.94,2780.4,637.49,S.Amérique,"09 juillet 1816"
DZA,Algérie,43.38,2381.74,167.56,Afrique,"05 juillet 1962"
POUVEZ,Canada,37.59,9984.67,1647.12,N.Amérique,"1er juillet 1867"
AUS,Australie,25.47,7692.02,1408.68,Océanie,
KAZ,Kazakhstan,18.53,2724.9,159.41,Asie,"16 décembre 1991"

Le format des dates est différent maintenant. Le format '% B% d,% Y' signifie que la date affichera d'abord le nom complet du mois, puis le jour suivi d'une virgule et enfin l'année complète.

Il existe plusieurs autres paramètres facultatifs que vous pouvez utiliser avec .to_csv ():

  • SEP dénote un séparateur de valeurs.
  • décimal indique un séparateur décimal.
  • codage définit l'encodage du fichier.
  • entête spécifie si vous voulez écrire les étiquettes de colonne dans le fichier.

Voici comment passer des arguments pour SEP et entête:

>>>

>>> s = df.to_csv(SEP=';', entête=Faux)
>>> impression(s)
CHN; Chine; 1398.72; 9596.96; 12234.78; Asie;
IND; Inde; 1351,16; 3287,26; 2575,67; Asie; 1947-08-15
USA; US; 329.74; 9833.52; 19485.39; Amérique du Nord; 1776-07-04
IDN; Indonésie; 268.07; 1910.93; 1015.54; Asie; 1945-08-17
Brésil; 210,32; 8515,77; 2055,51; Amérique du Sud; 1822-09-07
Pakistan; 205,71; 881,91; 302,14; Asie; 1947-08-14
NGA; Nigeria; 200,96; 923,77; 375,77; Afrique; 1960-10-01
Bangladesh; 167,09; 147,57; 245,63; Asie; 1971-03-26
Russie; 146,79; 17098,25; 1530,75 ;; 1992-06-12
MEX; Mexique; 126,58; 1964,38; 1158,23; Amérique du Nord; 1810-09-16
JPN; Japon; 126,22; 377,97; 4872,42; Asie;
DEU; Allemagne; 83.02; 357.11; 3693.2; Europe;
FRA; France; 67.02; 640.68; 2582.49; Europe; 1789-07-14
GBR; Royaume-Uni; 66,44; 242,5; 2631,23; Europe;
ITA; Italie; 60,36; 301,34; 1943,84; Europe;
ARG; Argentine; 44,94; 2780,4; 637,49; Amérique du Sud; 1816-07-09
DZA; Algérie; 43,38; 2381,74; 167,56; Afrique; 1962-07-05
CAN; Canada; 37,59; 9984,67; 1647,12; Amérique du Nord; 1867-07-01
AUS; Australie; 25,47; 7692,02; 1408,68; Océanie;
KAZ; Kazakhstan; 18,53; 2724,9; 159,41; Asie; 1991-12-16

Les données sont séparées par un point-virgule (';') parce que vous avez spécifié sep = ';'. Aussi, depuis que tu es passé header = False, vous voyez vos données sans la ligne d’en-tête des noms de colonnes.

Les pandas read_csv () La fonction dispose de nombreuses options supplémentaires pour la gestion des données manquantes, l'utilisation des dates et des heures, la citation, l'encodage, la gestion des erreurs, etc. Par exemple, si vous avez un fichier avec une colonne de données et souhaitez obtenir une Séries objet au lieu d'un Trame de donnéesalors vous pouvez passer squeeze = True à read_csv (). Vous en apprendrez plus tard sur la compression et la décompression de données, ainsi que sur la manière de sauter des lignes et des colonnes.

Fichiers JSON

JSON est synonyme de notation d'objet JavaScript. Les fichiers JSON sont des fichiers en texte brut utilisés pour l'échange de données, et les humains peuvent les lire facilement. Ils suivent les normes ISO / IEC 21778: 2017 et ECMA-404 et utilisent le .json extension. Python et les pandas fonctionnent bien avec les fichiers JSON, car la bibliothèque json de Python les prend en charge de manière intégrée.

Vous pouvez sauvegarder les données de votre Trame de données dans un fichier JSON avec .to_json (). Commencez par créer un Trame de données objet à nouveau. Utilisez le dictionnaire Les données qui contient les données sur les pays et ensuite appliquer .to_json ():

>>>

>>> df = pd.Trame de données(Les données=Les données).T
>>> df.to_json('data-columns.json')

This code produces the file data-columns.json. You can expand the code block below to see how this file should look:

"COUNTRY":"CHN":"China","IND":"India","USA":"US","IDN":"Indonesia","BRA":"Brazil","PAK":"Pakistan","NGA":"Nigeria","BGD":"Bangladesh","RUS":"Russia","MEX":"Mexico","JPN":"Japan","DEU":"Germany","FRA":"France","GBR":"UK","ITA":"Italy","ARG":"Argentina","DZA":"Algeria","CAN":"Canada","AUS":"Australia","KAZ":"Kazakhstan","POP":"CHN":1398.72,"IND":1351.16,"USA":329.74,"IDN":268.07,"BRA":210.32,"PAK":205.71,"NGA":200.96,"BGD":167.09,"RUS":146.79,"MEX":126.58,"JPN":126.22,"DEU":83.02,"FRA":67.02,"GBR":66.44,"ITA":60.36,"ARG":44.94,"DZA":43.38,"CAN":37.59,"AUS":25.47,"KAZ":18.53,"AREA":"CHN":9596.96,"IND":3287.26,"USA":9833.52,"IDN":1910.93,"BRA":8515.77,"PAK":881.91,"NGA":923.77,"BGD":147.57,"RUS":17098.25,"MEX":1964.38,"JPN":377.97,"DEU":357.11,"FRA":640.68,"GBR":242.5,"ITA":301.34,"ARG":2780.4,"DZA":2381.74,"CAN":9984.67,"AUS":7692.02,"KAZ":2724.9,"GDP":"CHN":12234.78,"IND":2575.67,"USA":19485.39,"IDN":1015.54,"BRA":2055.51,"PAK":302.14,"NGA":375.77,"BGD":245.63,"RUS":1530.75,"MEX":1158.23,"JPN":4872.42,"DEU":3693.2,"FRA":2582.49,"GBR":2631.23,"ITA":1943.84,"ARG":637.49,"DZA":167.56,"CAN":1647.12,"AUS":1408.68,"KAZ":159.41,"CONT":"CHN":"Asia","IND":"Asia","USA":"N.America","IDN":"Asia","BRA":"S.America","PAK":"Asia","NGA":"Africa","BGD":"Asia","RUS":nul,"MEX":"N.America","JPN":"Asia","DEU":"Europe","FRA":"Europe","GBR":"Europe","ITA":"Europe","ARG":"S.America","DZA":"Africa","CAN":"N.America","AUS":"Oceania","KAZ":"Asia","IND_DAY":"CHN":nul,"IND":"1947-08-15","USA":"1776-07-04","IDN":"1945-08-17","BRA":"1822-09-07","PAK":"1947-08-14","NGA":"1960-10-01","BGD":"1971-03-26","RUS":"1992-06-12","MEX":"1810-09-16","JPN":nul,"DEU":nul,"FRA":"1789-07-14","GBR":nul,"ITA":nul,"ARG":"1816-07-09","DZA":"1962-07-05","CAN":"1867-07-01","AUS":nul,"KAZ":"1991-12-16"

data-columns.json has one large dictionary with the column labels as keys and the corresponding inner dictionaries as values.

You can get a different file structure if you pass an argument for the optional parameter orient:

>>>

>>> df.to_json('data-index.json', orient='index')

le orient parameter defaults to 'columns'. Here, you’ve set it to index.

You should get a new file data-index.json. You can expand the code block below to see the changes:

"CHN":"COUNTRY":"China","POP":1398.72,"AREA":9596.96,"GDP":12234.78,"CONT":"Asia","IND_DAY":nul,"IND":"COUNTRY":"India","POP":1351.16,"AREA":3287.26,"GDP":2575.67,"CONT":"Asia","IND_DAY":"1947-08-15","USA":"COUNTRY":"US","POP":329.74,"AREA":9833.52,"GDP":19485.39,"CONT":"N.America","IND_DAY":"1776-07-04","IDN":"COUNTRY":"Indonesia","POP":268.07,"AREA":1910.93,"GDP":1015.54,"CONT":"Asia","IND_DAY":"1945-08-17","BRA":"COUNTRY":"Brazil","POP":210.32,"AREA":8515.77,"GDP":2055.51,"CONT":"S.America","IND_DAY":"1822-09-07","PAK":"COUNTRY":"Pakistan","POP":205.71,"AREA":881.91,"GDP":302.14,"CONT":"Asia","IND_DAY":"1947-08-14","NGA":"COUNTRY":"Nigeria","POP":200.96,"AREA":923.77,"GDP":375.77,"CONT":"Africa","IND_DAY":"1960-10-01","BGD":"COUNTRY":"Bangladesh","POP":167.09,"AREA":147.57,"GDP":245.63,"CONT":"Asia","IND_DAY":"1971-03-26","RUS":"COUNTRY":"Russia","POP":146.79,"AREA":17098.25,"GDP":1530.75,"CONT":nul,"IND_DAY":"1992-06-12","MEX":"COUNTRY":"Mexico","POP":126.58,"AREA":1964.38,"GDP":1158.23,"CONT":"N.America","IND_DAY":"1810-09-16","JPN":"COUNTRY":"Japan","POP":126.22,"AREA":377.97,"GDP":4872.42,"CONT":"Asia","IND_DAY":nul,"DEU":"COUNTRY":"Germany","POP":83.02,"AREA":357.11,"GDP":3693.2,"CONT":"Europe","IND_DAY":nul,"FRA":"COUNTRY":"France","POP":67.02,"AREA":640.68,"GDP":2582.49,"CONT":"Europe","IND_DAY":"1789-07-14","GBR":"COUNTRY":"UK","POP":66.44,"AREA":242.5,"GDP":2631.23,"CONT":"Europe","IND_DAY":nul,"ITA":"COUNTRY":"Italy","POP":60.36,"AREA":301.34,"GDP":1943.84,"CONT":"Europe","IND_DAY":nul,"ARG":"COUNTRY":"Argentina","POP":44.94,"AREA":2780.4,"GDP":637.49,"CONT":"S.America","IND_DAY":"1816-07-09","DZA":"COUNTRY":"Algeria","POP":43.38,"AREA":2381.74,"GDP":167.56,"CONT":"Africa","IND_DAY":"1962-07-05","CAN":"COUNTRY":"Canada","POP":37.59,"AREA":9984.67,"GDP":1647.12,"CONT":"N.America","IND_DAY":"1867-07-01","AUS":"COUNTRY":"Australia","POP":25.47,"AREA":7692.02,"GDP":1408.68,"CONT":"Oceania","IND_DAY":nul,"KAZ":"COUNTRY":"Kazakhstan","POP":18.53,"AREA":2724.9,"GDP":159.41,"CONT":"Asia","IND_DAY":"1991-12-16"

data-index.json also has one large dictionary, but this time the row labels are the keys, and the inner dictionaries are the values.

There are few more options for orient. One of them is 'records':

>>>

>>> df.to_json('data-records.json', orient='records')

This code should yield the file data-records.json. You can expand the code block below to see the content:

[{[{[{["COUNTRY":"China","POP":1398.72,"AREA":9596.96,"GDP":12234.78,"CONT":"Asia","IND_DAY":nul,"COUNTRY":"India","POP":1351.16,"AREA":3287.26,"GDP":2575.67,"CONT":"Asia","IND_DAY":"1947-08-15","COUNTRY":"US","POP":329.74,"AREA":9833.52,"GDP":19485.39,"CONT":"N.America","IND_DAY":"1776-07-04","COUNTRY":"Indonesia","POP":268.07,"AREA":1910.93,"GDP":1015.54,"CONT":"Asia","IND_DAY":"1945-08-17","COUNTRY":"Brazil","POP":210.32,"AREA":8515.77,"GDP":2055.51,"CONT":"S.America","IND_DAY":"1822-09-07","COUNTRY":"Pakistan","POP":205.71,"AREA":881.91,"GDP":302.14,"CONT":"Asia","IND_DAY":"1947-08-14","COUNTRY":"Nigeria","POP":200.96,"AREA":923.77,"GDP":375.77,"CONT":"Africa","IND_DAY":"1960-10-01","COUNTRY":"Bangladesh","POP":167.09,"AREA":147.57,"GDP":245.63,"CONT":"Asia","IND_DAY":"1971-03-26","COUNTRY":"Russia","POP":146.79,"AREA":17098.25,"GDP":1530.75,"CONT":nul,"IND_DAY":"1992-06-12","COUNTRY":"Mexico","POP":126.58,"AREA":1964.38,"GDP":1158.23,"CONT":"N.America","IND_DAY":"1810-09-16","COUNTRY":"Japan","POP":126.22,"AREA":377.97,"GDP":4872.42,"CONT":"Asia","IND_DAY":nul,"COUNTRY":"Germany","POP":83.02,"AREA":357.11,"GDP":3693.2,"CONT":"Europe","IND_DAY":nul,"COUNTRY":"France","POP":67.02,"AREA":640.68,"GDP":2582.49,"CONT":"Europe","IND_DAY":"1789-07-14","COUNTRY":"UK","POP":66.44,"AREA":242.5,"GDP":2631.23,"CONT":"Europe","IND_DAY":nul,"COUNTRY":"Italy","POP":60.36,"AREA":301.34,"GDP":1943.84,"CONT":"Europe","IND_DAY":nul,"COUNTRY":"Argentina","POP":44.94,"AREA":2780.4,"GDP":637.49,"CONT":"S.America","IND_DAY":"1816-07-09","COUNTRY":"Algeria","POP":43.38,"AREA":2381.74,"GDP":167.56,"CONT":"Africa","IND_DAY":"1962-07-05","COUNTRY":"Canada","POP":37.59,"AREA":9984.67,"GDP":1647.12,"CONT":"N.America","IND_DAY":"1867-07-01","COUNTRY":"Australia","POP":25.47,"AREA":7692.02,"GDP":1408.68,"CONT":"Oceania","IND_DAY":nul,"COUNTRY":"Kazakhstan","POP":18.53,"AREA":2724.9,"GDP":159.41,"CONT":"Asia","IND_DAY":"1991-12-16"]

data-records.json holds a list with one dictionary for each row. The row labels are not écrit.

You can get another interesting file structure with orient='split':

>>>

>>> df.to_json('data-split.json', orient='split')

The resulting file is data-split.json. You can expand the code block below to see how this file should look:

"columns":[[[["COUNTRY","POP","AREA","GDP","CONT","IND_DAY"],"index":[[[["CHN","IND","USA","IDN","BRA","PAK","NGA","BGD","RUS","MEX","JPN","DEU","FRA","GBR","ITA","ARG","DZA","CAN","AUS","KAZ"],"data":[[[[[[[["China",1398.72,9596.96,12234.78,"Asia",nul],[[[["India",1351.16,3287.26,2575.67,"Asia","1947-08-15"],[[[["US",329.74,9833.52,19485.39,"N.America","1776-07-04"],[[[["Indonesia",268.07,1910.93,1015.54,"Asia","1945-08-17"],[[[["Brazil",210.32,8515.77,2055.51,"S.America","1822-09-07"],[[[["Pakistan",205.71,881.91,302.14,"Asia","1947-08-14"],[[[["Nigeria",200.96,923.77,375.77,"Africa","1960-10-01"],[[[["Bangladesh",167.09,147.57,245.63,"Asia","1971-03-26"],[[[["Russia",146.79,17098.25,1530.75,nul,"1992-06-12"],[[[["Mexico",126.58,1964.38,1158.23,"N.America","1810-09-16"],[[[["Japan",126.22,377.97,4872.42,"Asia",nul],[[[["Germany",83.02,357.11,3693.2,"Europe",nul],[[[["France",67.02,640.68,2582.49,"Europe","1789-07-14"],[[[["UK",66.44,242.5,2631.23,"Europe",nul],[[[["Italy",60.36,301.34,1943.84,"Europe",nul],[[[["Argentina",44.94,2780.4,637.49,"S.America","1816-07-09"],[[[["Algeria",43.38,2381.74,167.56,"Africa","1962-07-05"],[[[["Canada",37.59,9984.67,1647.12,"N.America","1867-07-01"],[[[["Australia",25.47,7692.02,1408.68,"Oceania",nul],[[[["Kazakhstan",18.53,2724.9,159.41,"Asia","1991-12-16"]]

data-split.json contains one dictionary that holds the following lists:

  • The names of the columns
  • The labels of the rows
  • The inner lists (two-dimensional sequence) that hold data values

If you don’t provide the value for the optional parameter path_or_buf that defines the file path, then .to_json() will return a JSON string instead of writing the results to a file. This behavior is consistent with .to_csv().

There are other optional parameters you can use. For instance, you can set index=False to forego saving row labels. You can manipulate precision with double_precision, and dates with date_format et date_unit. These last two parameters are particularly important when you have time series among your data:

>>>

>>> df = pd.DataFrame(Les données=Les données).T
>>> df[[[['IND_DAY'] = pd.to_datetime(df[[[['IND_DAY'])
>>> df.dtypes
COUNTRY            object
POP                object
AREA               object
GDP                object
CONT               object
IND_DAY    datetime64[ns]
dtype: object

>>> df.to_json('data-time.json')

In this example, you’ve created the DataFrame from the dictionary Les données and used to_datetime() to convert the values in the last column to datetime64. You can expand the code block below to see the resulting file:

"COUNTRY":"CHN":"China","IND":"India","USA":"US","IDN":"Indonesia","BRA":"Brazil","PAK":"Pakistan","NGA":"Nigeria","BGD":"Bangladesh","RUS":"Russia","MEX":"Mexico","JPN":"Japan","DEU":"Germany","FRA":"France","GBR":"UK","ITA":"Italy","ARG":"Argentina","DZA":"Algeria","CAN":"Canada","AUS":"Australia","KAZ":"Kazakhstan","POP":"CHN":1398.72,"IND":1351.16,"USA":329.74,"IDN":268.07,"BRA":210.32,"PAK":205.71,"NGA":200.96,"BGD":167.09,"RUS":146.79,"MEX":126.58,"JPN":126.22,"DEU":83.02,"FRA":67.02,"GBR":66.44,"ITA":60.36,"ARG":44.94,"DZA":43.38,"CAN":37.59,"AUS":25.47,"KAZ":18.53,"AREA":"CHN":9596.96,"IND":3287.26,"USA":9833.52,"IDN":1910.93,"BRA":8515.77,"PAK":881.91,"NGA":923.77,"BGD":147.57,"RUS":17098.25,"MEX":1964.38,"JPN":377.97,"DEU":357.11,"FRA":640.68,"GBR":242.5,"ITA":301.34,"ARG":2780.4,"DZA":2381.74,"CAN":9984.67,"AUS":7692.02,"KAZ":2724.9,"GDP":"CHN":12234.78,"IND":2575.67,"USA":19485.39,"IDN":1015.54,"BRA":2055.51,"PAK":302.14,"NGA":375.77,"BGD":245.63,"RUS":1530.75,"MEX":1158.23,"JPN":4872.42,"DEU":3693.2,"FRA":2582.49,"GBR":2631.23,"ITA":1943.84,"ARG":637.49,"DZA":167.56,"CAN":1647.12,"AUS":1408.68,"KAZ":159.41,"CONT":"CHN":"Asia","IND":"Asia","USA":"N.America","IDN":"Asia","BRA":"S.America","PAK":"Asia","NGA":"Africa","BGD":"Asia","RUS":nul,"MEX":"N.America","JPN":"Asia","DEU":"Europe","FRA":"Europe","GBR":"Europe","ITA":"Europe","ARG":"S.America","DZA":"Africa","CAN":"N.America","AUS":"Oceania","KAZ":"Asia","IND_DAY":"CHN":nul,"IND":-706320000000,"USA":-6106060800000,"IDN":-769219200000,"BRA":-4648924800000,"PAK":-706406400000,"NGA":-291945600000,"BGD":38793600000,"RUS":708307200000,"MEX":-5026838400000,"JPN":nul,"DEU":nul,"FRA":-5694969600000,"GBR":nul,"ITA":nul,"ARG":-4843411200000,"DZA":-236476800000,"CAN":-3234729600000,"AUS":nul,"KAZ":692841600000

In this file, you have large integers instead of dates for the independence days. That’s because the default value of the optional parameter date_format est 'epoch' whenever orient n'est pas 'table'. This default behavior expresses dates as an epoch in milliseconds relative to midnight on January 1, 1970.

However, if you pass date_format='iso', then you’ll get the dates in the ISO 8601 format. En plus, date_unit decides the units of time:

>>>

>>> df = pd.DataFrame(Les données=Les données).T
>>> df[[[['IND_DAY'] = pd.to_datetime(df[[[['IND_DAY'])
>>> df.to_json('new-data-time.json', date_format='iso', date_unit='s')

This code produces the following JSON file:

"COUNTRY":"CHN":"China","IND":"India","USA":"US","IDN":"Indonesia","BRA":"Brazil","PAK":"Pakistan","NGA":"Nigeria","BGD":"Bangladesh","RUS":"Russia","MEX":"Mexico","JPN":"Japan","DEU":"Germany","FRA":"France","GBR":"UK","ITA":"Italy","ARG":"Argentina","DZA":"Algeria","CAN":"Canada","AUS":"Australia","KAZ":"Kazakhstan","POP":"CHN":1398.72,"IND":1351.16,"USA":329.74,"IDN":268.07,"BRA":210.32,"PAK":205.71,"NGA":200.96,"BGD":167.09,"RUS":146.79,"MEX":126.58,"JPN":126.22,"DEU":83.02,"FRA":67.02,"GBR":66.44,"ITA":60.36,"ARG":44.94,"DZA":43.38,"CAN":37.59,"AUS":25.47,"KAZ":18.53,"AREA":"CHN":9596.96,"IND":3287.26,"USA":9833.52,"IDN":1910.93,"BRA":8515.77,"PAK":881.91,"NGA":923.77,"BGD":147.57,"RUS":17098.25,"MEX":1964.38,"JPN":377.97,"DEU":357.11,"FRA":640.68,"GBR":242.5,"ITA":301.34,"ARG":2780.4,"DZA":2381.74,"CAN":9984.67,"AUS":7692.02,"KAZ":2724.9,"GDP":"CHN":12234.78,"IND":2575.67,"USA":19485.39,"IDN":1015.54,"BRA":2055.51,"PAK":302.14,"NGA":375.77,"BGD":245.63,"RUS":1530.75,"MEX":1158.23,"JPN":4872.42,"DEU":3693.2,"FRA":2582.49,"GBR":2631.23,"ITA":1943.84,"ARG":637.49,"DZA":167.56,"CAN":1647.12,"AUS":1408.68,"KAZ":159.41,"CONT":"CHN":"Asia","IND":"Asia","USA":"N.America","IDN":"Asia","BRA":"S.America","PAK":"Asia","NGA":"Africa","BGD":"Asia","RUS":nul,"MEX":"N.America","JPN":"Asia","DEU":"Europe","FRA":"Europe","GBR":"Europe","ITA":"Europe","ARG":"S.America","DZA":"Africa","CAN":"N.America","AUS":"Oceania","KAZ":"Asia","IND_DAY":"CHN":nul,"IND":"1947-08-15T00:00:00Z","USA":"1776-07-04T00:00:00Z","IDN":"1945-08-17T00:00:00Z","BRA":"1822-09-07T00:00:00Z","PAK":"1947-08-14T00:00:00Z","NGA":"1960-10-01T00:00:00Z","BGD":"1971-03-26T00:00:00Z","RUS":"1992-06-12T00:00:00Z","MEX":"1810-09-16T00:00:00Z","JPN":nul,"DEU":nul,"FRA":"1789-07-14T00:00:00Z","GBR":nul,"ITA":nul,"ARG":"1816-07-09T00:00:00Z","DZA":"1962-07-05T00:00:00Z","CAN":"1867-07-01T00:00:00Z","AUS":nul,"KAZ":"1991-12-16T00:00:00Z"

The dates in the resulting file are in the ISO 8601 format.

You can load the data from a JSON file with read_json():

>>>

>>> df = pd.read_json('data-index.json', orient='index',
...                   convert_dates=[[[['IND_DAY'])

The parameter convert_dates has a similar purpose as parse_dates when you use it to read CSV files. The optional parameter orient is very important because it specifies how Pandas understands the structure of the file.

There are other optional parameters you can use as well:

  • Set the encoding with encoding.
  • Manipulate dates with convert_dates et keep_default_dates.
  • Impact precision with dtype et precise_float.
  • Decode numeric data directly to NumPy arrays with numpy=True.

Note that you might lose the order of rows and columns when using the JSON format to store your data.

HTML Files

An HTML is a plaintext file that uses hypertext markup language to help browsers render web pages. The extensions for HTML files are .html et .htm. You’ll need to install an HTML parser library like lxml or html5lib to be able to work with HTML files:

$pip install lxml html5lib

You can also use Conda to install the same packages:

$ conda install lxml html5lib

Once you have these libraries, you can save the contents of your DataFrame as an HTML file with .to_html():

>>>

df = pd.DataFrame(data=data).T
df.to_html('data.html')

This code generates a file data.html. You can expand the code block below to see how this file should look:

<table border="1" classe="dataframe">
  <thead>
    <tr style="text-align: right;">
      <th></th>
      <th>COUNTRY</th>
      <th>POP</th>
      <th>AREA</th>
      <th>GDP</th>
      <th>CONT</th>
      <th>IND_DAY</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>CHN</th>
      <td>Chine</td>
      <td>1398.72</td>
      <td>9596.96</td>
      <td>12234.8</td>
      <td>Asie</td>
      <td>NaN</td>
    </tr>
    <tr>
      <th>IND</th>
      <td>India</td>
      <td>1351.16</td>
      <td>3287.26</td>
      <td>2575.67</td>
      <td>Asie</td>
      <td>1947-08-15</td>
    </tr>
    <tr>
      <th>Etats-Unis</th>
      <td>NOUS</td>
      <td>329.74</td>
      <td>9833.52</td>
      <td>19485.4</td>
      <td>N.America</td>
      <td>1776-07-04</td>
    </tr>
    <tr>
      <th>IDN</th>
      <td>Indonesia</td>
      <td>268.07</td>
      <td>1910.93</td>
      <td>1015.54</td>
      <td>Asie</td>
      <td>[1945-08-17[1945-08-17</td>
    </tr>
    <tr>
      <th>BRA</th>
      <td>Brésil</td>
      <td>210.32</td>
      <td>8515.77</td>
      <td>2055.51</td>
      <td>S.America</td>
      <td>1822-09-07</td>
    </tr>
    <tr>
      <th>PAK</th>
      <td>Pakistan</td>
      <td>205.71</td>
      <td>881.91</td>
      <td>302.14</td>
      <td>Asie</td>
      <td>1947-08-14</td>
    </tr>
    <tr>
      <th>NGA</th>
      <td>Nigeria</td>
      <td>200.96</td>
      <td>923.77</td>
      <td>375.77</td>
      <td>Afrique</td>
      <td>1960-10-01</td>
    </tr>
    <tr>
      <th>BGD</th>
      <td>Bangladesh</td>
      <td>167.09</td>
      <td>147.57</td>
      <td>245.63</td>
      <td>Asie</td>
      <td>1971-03-26</td>
    </tr>
    <tr>
      <th>RUS</th>
      <td>Russie</td>
      <td>146.79</td>
      <td>17098.2</td>
      <td>1530.75</td>
      <td>NaN</td>
      <td>1992-06-12</td>
    </tr>
    <tr>
      <th>MEX</th>
      <td>Mexique</td>
      <td>126.58</td>
      <td>1964.38</td>
      <td>1158.23</td>
      <td>N.America</td>
      <td>1810-09-16</td>
    </tr>
    <tr>
      <th>JPN</th>
      <td>Japan</td>
      <td>126.22</td>
      <td>377.97</td>
      <td>4872.42</td>
      <td>Asie</td>
      <td>NaN</td>
    </tr>
    <tr>
      <th>DEU</th>
      <td>Allemagne</td>
      <td>83.02</td>
      <td>357.11</td>
      <td>3693.2</td>
      <td>L'Europe </td>
      <td>NaN</td>
    </tr>
    <tr>
      <th>FRA</th>
      <td>France</td>
      <td>67.02</td>
      <td>640.68</td>
      <td>2582.49</td>
      <td>L'Europe </td>
      <td>1789-07-14</td>
    </tr>
    <tr>
      <th>GBR</th>
      <td>Royaume-Uni</td>
      <td>66.44</td>
      <td>242.5</td>
      <td>2631.23</td>
      <td>L'Europe </td>
      <td>NaN</td>
    </tr>
    <tr>
      <th>ITA</th>
      <td>Italie</td>
      <td>60.36</td>
      <td>301.34</td>
      <td>1943.84</td>
      <td>L'Europe </td>
      <td>NaN</td>
    </tr>
    <tr>
      <th>ARG</th>
      <td>Argentine</td>
      <td>44.94</td>
      <td>2780.4</td>
      <td>637.49</td>
      <td>S.America</td>
      <td>1816-07-09</td>
    </tr>
    <tr>
      <th>DZA</th>
      <td>Algérie</td>
      <td>43.38</td>
      <td>2381.74</td>
      <td>167.56</td>
      <td>Afrique</td>
      <td>1962-07-05</td>
    </tr>
    <tr>
      <th>CAN</th>
      <td>Canada</td>
      <td>37.59</td>
      <td>9984.67</td>
      <td>1647.12</td>
      <td>N.America</td>
      <td>1867-07-01</td>
    </tr>
    <tr>
      <th>AUS</th>
      <td>Australia</td>
      <td>25.47</td>
      <td>7692.02</td>
      <td>1408.68</td>
      <td>Océanie</td>
      <td>NaN</td>
    </tr>
    <tr>
      <th>KAZ</th>
      <td>Kazakhstan</td>
      <td>18.53</td>
      <td>2724.9</td>
      <td>159.41</td>
      <td>Asie</td>
      <td>1991-12-16</td>
    </tr>
  </tbody>
</table>

This file shows the DataFrame contents nicely. However, notice that you haven’t obtained an entire web page. You’ve just output the data that corresponds to df in the HTML format.

.to_html() won’t create a file if you don’t provide the optional parameter buf, which denotes the buffer to write to. If you leave this parameter out, then your code will return a string as it did with .to_csv() et .to_json().

Here are some other optional parameters:

  • header determines whether to save the column names.
  • index determines whether to save the row labels.
  • classes assigns cascading style sheet (CSS) classes.
  • render_links specifies whether to convert URLs to HTML links.
  • table_id assigns the CSS id to the table étiquette.
  • escape decides whether to convert the characters <, >, et Et to HTML-safe strings.

You use parameters like these to specify different aspects of the resulting files or strings.

You can create a DataFrame object from a suitable HTML file using read_html(), which will return a DataFrame instance or a list of them:

>>>

>>> df = pd.read_html('data.html', index_col=0, parse_dates=[[[['IND_DAY'])

This is very similar to what you did when reading CSV files. You also have parameters that help you work with dates, missing values, precision, encoding, HTML parsers, and more.

Excel Files

You’ve already learned how to read and write Excel files with Pandas. However, there are a few more options worth considering. For one, when you use .to_excel(), you can specify the name of the target worksheet with the optional parameter sheet_name:

>>>

>>> df = pd.DataFrame(Les données=Les données).T
>>> df.to_excel('data.xlsx', sheet_name='COUNTRIES')

Here, you create a file data.xlsx with a worksheet called COUNTRIES that stores the data. The string 'data.xlsx' is the argument for the parameter excel_writer that defines the name of the Excel file or its path.

The optional parameters startrow et startcol both default to 0 and indicate the upper left-most cell where the data should start being written:

>>>

>>> df.to_excel('data-shifted.xlsx', sheet_name='COUNTRIES',
...             startrow=2, startcol=4)

Here, you specify that the table should start in the third row and the fifth column. You also used zero-based indexing, so the third row is denoted by 2 and the fifth column by 4.

Now the resulting worksheet looks like this:

mmst-pandas-rw-files-excel-shifted

As you can see, the table starts in the third row 2 and the fifth column E.

.read_excel() also has the optional parameter sheet_name that specifies which worksheets to read when loading data. It can take on one of the following values:

  • The zero-based index of the worksheet
  • The name of the worksheet
  • The list of indices or names to read multiple sheets
  • The value Aucun to read all sheets

Here’s how you would use this parameter in your code:

>>>

>>> df = pd.read_excel('data.xlsx', sheet_name=0, index_col=0,
...                    parse_dates=[[[['IND_DAY'])
>>> df = pd.read_excel('data.xlsx', sheet_name='COUNTRIES', index_col=0,
...                    parse_dates=[[[['IND_DAY'])

Both statements above create the same DataFrame because the sheet_name parameters have the same values. In both cases, sheet_name=0 et sheet_name='COUNTRIES' refer to the same worksheet. The argument parse_dates=['IND_DAY'] tells Pandas to try to consider the values in this column as dates or times.

There are other optional parameters you can use with .read_excel() et .to_excel() to determine the Excel engine, the encoding, the way to handle missing values and infinities, the method for writing column names and row labels, and so on.

SQL Files

Pandas IO tools can also read and write databases. In this next example, you’ll write your data to a database called data.db. To get started, you’ll need the SQLAlchemy package. To learn more about it, you can read the official ORM tutorial. You’ll also need the database driver. Python has a built-in driver for SQLite.

You can install SQLAlchemy with pip:

You can also install it with Conda:

$ conda install sqlalchemy

Once you have SQLAlchemy installed, import create_engine() and create a database engine:

>>>

>>> de sqlalchemy import create_engine
>>> engine = create_engine('sqlite:///data.db', echo=False)

Now that you have everything set up, the next step is to create a DataFrame object. It’s convenient to specify the data types and apply .to_sql().

>>>

>>> dtypes = 'POP': 'float64', 'AREA': 'float64', 'GDP': 'float64',
...           'IND_DAY': 'datetime64'
>>> df = pd.DataFrame(Les données=Les données).T.astype(dtype=dtypes)
>>> df.dtypes
COUNTRY            object
POP               float64
AREA              float64
GDP               float64
CONT               object
IND_DAY    datetime64[ns]
dtype: object

.astype() is a very convenient method you can use to set multiple data types at once.

Once you’ve created your DataFrame, you can save it to the database with .to_sql():

>>>

>>> df.to_sql('data.db', con=engine, index_label='ID')

The parameter con is used to specify the database connection or engine that you want to use. The optional parameter index_label specifies how to call the database column with the row labels. You’ll often see it take on the value ID, Id, or id.

You should get the database data.db with a single table that looks like this:

mmst-pandas-rw-files-db

The first column contains the row labels. To omit writing them into the database, pass index=False à .to_sql(). The other columns correspond to the columns of the DataFrame.

There are a few more optional parameters. For example, you can use schema to specify the database schema and dtype to determine the types of the database columns. You can also use if_exists, which says what to do if a database with the same name and path already exists:

  • if_exists='fail' raises a ValueError and is the default.
  • if_exists='replace' drops the table and inserts new values.
  • if_exists='append' inserts new values into the table.

You can load the data from the database with read_sql():

>>>

>>> df = pd.read_sql('data.db', con=engine, index_col='ID')
>>> df
                                COUNTRY      POP      AREA       GDP       CONT    IND_DAY
ID
CHN       China  1398.72   9596.96  12234.78       Asia        NaT
IND       India  1351.16   3287.26   2575.67       Asia 1947-08-15
USA          US   329.74   9833.52  19485.39  N.America 1776-07-04
IDN   Indonesia   268.07   1910.93   1015.54       Asia 1945-08-17
BRA      Brazil   210.32   8515.77   2055.51  S.America 1822-09-07
PAK    Pakistan   205.71    881.91    302.14       Asia 1947-08-14
NGA     Nigeria   200.96    923.77    375.77     Africa 1960-10-01
BGD  Bangladesh   167.09    147.57    245.63       Asia 1971-03-26
RUS      Russia   146.79  17098.25   1530.75       None 1992-06-12
MEX      Mexico   126.58   1964.38   1158.23  N.America 1810-09-16
JPN       Japan   126.22    377.97   4872.42       Asia        NaT
DEU     Germany    83.02    357.11   3693.20     Europe        NaT
FRA      France    67.02    640.68   2582.49     Europe 1789-07-14
GBR          UK    66.44    242.50   2631.23     Europe        NaT
ITA       Italy    60.36    301.34   1943.84     Europe        NaT
ARG   Argentina    44.94   2780.40    637.49  S.America 1816-07-09
DZA     Algeria    43.38   2381.74    167.56     Africa 1962-07-05
CAN      Canada    37.59   9984.67   1647.12  N.America 1867-07-01
AUS   Australia    25.47   7692.02   1408.68    Oceania        NaT
KAZ  Kazakhstan    18.53   2724.90    159.41       Asia 1991-12-16

The parameter index_col specifies the name of the column with the row labels. Note that this inserts an extra row after the header that starts with ID. You can fix this behavior with the following line of code:

>>>

>>> df.index.prénom = Aucun
>>> df
                                COUNTRY      POP      AREA       GDP       CONT    IND_DAY
CHN       China  1398.72   9596.96  12234.78       Asia        NaT
IND       India  1351.16   3287.26   2575.67       Asia 1947-08-15
USA          US   329.74   9833.52  19485.39  N.America 1776-07-04
IDN   Indonesia   268.07   1910.93   1015.54       Asia 1945-08-17
BRA      Brazil   210.32   8515.77   2055.51  S.America 1822-09-07
PAK    Pakistan   205.71    881.91    302.14       Asia 1947-08-14
NGA     Nigeria   200.96    923.77    375.77     Africa 1960-10-01
BGD  Bangladesh   167.09    147.57    245.63       Asia 1971-03-26
RUS      Russia   146.79  17098.25   1530.75       None 1992-06-12
MEX      Mexico   126.58   1964.38   1158.23  N.America 1810-09-16
JPN       Japan   126.22    377.97   4872.42       Asia        NaT
DEU     Germany    83.02    357.11   3693.20     Europe        NaT
FRA      France    67.02    640.68   2582.49     Europe 1789-07-14
GBR          UK    66.44    242.50   2631.23     Europe        NaT
ITA       Italy    60.36    301.34   1943.84     Europe        NaT
ARG   Argentina    44.94   2780.40    637.49  S.America 1816-07-09
DZA     Algeria    43.38   2381.74    167.56     Africa 1962-07-05
CAN      Canada    37.59   9984.67   1647.12  N.America 1867-07-01
AUS   Australia    25.47   7692.02   1408.68    Oceania        NaT
KAZ  Kazakhstan    18.53   2724.90    159.41       Asia 1991-12-16

Now you have the same DataFrame object as before.

Note that the continent for Russia is now Aucun au lieu de nan. If you want to fill the missing values with nan, then you can use .fillna():

>>>

>>> df.fillna(value=flotte('nan'), inplace=True)

.fillna() replaces all missing values with whatever you pass to value. Here, you passed float('nan'), which says to fill all missing values with nan.

Also note that you didn’t have to pass parse_dates=['IND_DAY'] à read_sql(). That’s because your database was able to detect that the last column contains dates. However, you can pass parse_dates if you’d like. You’ll get the same results.

There are other functions that you can use to read databases, like read_sql_table() et read_sql_query(). Feel free to try them out!

Pickle Files

Pickling is the act of converting Python objects into byte streams. Unpickling is the inverse process. Python pickle files are the binary files that keep the data and hierarchy of Python objects. They usually have the extension .pickle ou .pkl.

You can save your DataFrame in a pickle file with .to_pickle():

>>>

>>> dtypes = 'POP': 'float64', 'AREA': 'float64', 'GDP': 'float64',
...           'IND_DAY': 'datetime64'
>>> df = pd.DataFrame(Les données=Les données).T.astype(dtype=dtypes)
>>> df.to_pickle('data.pickle')

Like you did with databases, it can be convenient first to specify the data types. Then, you create a file data.pickle to contain your data. You could also pass an integer value to the optional parameter protocol, which specifies the protocol of the pickler.

You can get the data from a pickle file with read_pickle():

>>>

>>> df = pd.read_pickle('data.pickle')
>>> df
                                COUNTRY      POP      AREA       GDP       CONT    IND_DAY
CHN       China  1398.72   9596.96  12234.78       Asia        NaT
IND       India  1351.16   3287.26   2575.67       Asia 1947-08-15
USA          US   329.74   9833.52  19485.39  N.America 1776-07-04
IDN   Indonesia   268.07   1910.93   1015.54       Asia 1945-08-17
BRA      Brazil   210.32   8515.77   2055.51  S.America 1822-09-07
PAK    Pakistan   205.71    881.91    302.14       Asia 1947-08-14
NGA     Nigeria   200.96    923.77    375.77     Africa 1960-10-01
BGD  Bangladesh   167.09    147.57    245.63       Asia 1971-03-26
RUS      Russia   146.79  17098.25   1530.75        NaN 1992-06-12
MEX      Mexico   126.58   1964.38   1158.23  N.America 1810-09-16
JPN       Japan   126.22    377.97   4872.42       Asia        NaT
DEU     Germany    83.02    357.11   3693.20     Europe        NaT
FRA      France    67.02    640.68   2582.49     Europe 1789-07-14
GBR          UK    66.44    242.50   2631.23     Europe        NaT
ITA       Italy    60.36    301.34   1943.84     Europe        NaT
ARG   Argentina    44.94   2780.40    637.49  S.America 1816-07-09
DZA     Algeria    43.38   2381.74    167.56     Africa 1962-07-05
CAN      Canada    37.59   9984.67   1647.12  N.America 1867-07-01
AUS   Australia    25.47   7692.02   1408.68    Oceania        NaT
KAZ  Kazakhstan    18.53   2724.90    159.41       Asia 1991-12-16

read_pickle() returns the DataFrame with the stored data. You can also check the data types:

>>>

>>> df.dtypes
COUNTRY            object
POP               float64
AREA              float64
GDP               float64
CONT               object
IND_DAY    datetime64[ns]
dtype: object

These are the same ones that you specified before using .to_pickle().

As a word of caution, you should always beware of loading pickles from untrusted sources. This can be dangerous! When you unpickle an untrustworthy file, it could execute arbitrary code on your machine, gain remote access to your computer, or otherwise exploit your device in other ways.

Working With Big Data

If your files are too large for saving or processing, then there are several approaches you can take to reduce the required disk space:

  • Compress your files
  • Choisir only the columns you want
  • Omit the rows you don’t need
  • Force the use of less precise data types
  • Split the data into chunks

You’ll take a look at each of these techniques in turn.

Compress and Decompress Files

You can create an archive file like you would a regular one, with the addition of a suffix that corresponds to the desired compression type:

  • '.gz'
  • '.bz2'
  • '.zip'
  • '.xz'

Pandas can deduce the compression type by itself:

>>>

>>> df = pd.DataFrame(Les données=Les données).T
>>> df.to_csv('data.csv.zip')

Here, you create a compressed .csv file as an archive. The size of the regular .csv file is 1048 bytes, while the compressed file only has 766 bytes.

You can open this compressed file as usual with the Pandas read_csv() function:

>>>

>>> df = pd.read_csv('data.csv.zip', index_col=0,
...                  parse_dates=[[[['IND_DAY'])
>>> df
                                COUNTRY      POP      AREA       GDP       CONT    IND_DAY
CHN       China  1398.72   9596.96  12234.78       Asia        NaT
IND       India  1351.16   3287.26   2575.67       Asia 1947-08-15
USA          US   329.74   9833.52  19485.39  N.America 1776-07-04
IDN   Indonesia   268.07   1910.93   1015.54       Asia 1945-08-17
BRA      Brazil   210.32   8515.77   2055.51  S.America 1822-09-07
PAK    Pakistan   205.71    881.91    302.14       Asia 1947-08-14
NGA     Nigeria   200.96    923.77    375.77     Africa 1960-10-01
BGD  Bangladesh   167.09    147.57    245.63       Asia 1971-03-26
RUS      Russia   146.79  17098.25   1530.75        NaN 1992-06-12
MEX      Mexico   126.58   1964.38   1158.23  N.America 1810-09-16
JPN       Japan   126.22    377.97   4872.42       Asia        NaT
DEU     Germany    83.02    357.11   3693.20     Europe        NaT
FRA      France    67.02    640.68   2582.49     Europe 1789-07-14
GBR          UK    66.44    242.50   2631.23     Europe        NaT
ITA       Italy    60.36    301.34   1943.84     Europe        NaT
ARG   Argentina    44.94   2780.40    637.49  S.America 1816-07-09
DZA     Algeria    43.38   2381.74    167.56     Africa 1962-07-05
CAN      Canada    37.59   9984.67   1647.12  N.America 1867-07-01
AUS   Australia    25.47   7692.02   1408.68    Oceania        NaT
KAZ  Kazakhstan    18.53   2724.90    159.41       Asia 1991-12-16

read_csv() decompresses the file before reading it into a DataFrame.

You can specify the type of compression with the optional parameter compression, which can take on any of the following values:

  • 'infer'
  • 'gzip'
  • 'bz2'
  • 'zip'
  • 'xz'
  • Aucun

The default value compression='infer' indicates that Pandas should deduce the compression type from the file extension.

Here’s how you would compress a pickle file:

>>>

>>> df = pd.DataFrame(Les données=Les données).T
>>> df.to_pickle('data.pickle.compress', compression='gzip')

You should get the file data.pickle.compress that you can later decompress and read:

>>>

>>> df = pd.read_pickle('data.pickle.compress', compression='gzip')

df again corresponds to the DataFrame with the same data as before.

You can give the other compression methods a try, as well. If you’re using pickle files, then keep in mind that the .zip format supports reading only.

Choose Columns

The Pandas read_csv() et read_excel() functions have the optional parameter usecols that you can use to specify the columns you want to load from the file. You can pass the list of column names as the corresponding argument:

>>>

>>> df = pd.read_csv('data.csv', usecols=[[[['COUNTRY', 'AREA'])
>>> df
                            COUNTRY      AREA
0        China   9596.96
1        India   3287.26
2           US   9833.52
3    Indonesia   1910.93
4       Brazil   8515.77
5     Pakistan    881.91
6      Nigeria    923.77
7   Bangladesh    147.57
8       Russia  17098.25
9       Mexico   1964.38
10       Japan    377.97
11     Germany    357.11
12      France    640.68
13          UK    242.50
14       Italy    301.34
15   Argentina   2780.40
16     Algeria   2381.74
17      Canada   9984.67
18   Australia   7692.02
19  Kazakhstan   2724.90

Now you have a DataFrame that contains less data than before. Here, there are only the names of the countries and their areas.

Instead of the column names, you can also pass their indices:

>>>

>>> df = pd.read_csv('data.csv',index_col=0, usecols=[[[[0, 1, 3])
>>> df
                                COUNTRY      AREA
CHN       China   9596.96
IND       India   3287.26
USA          US   9833.52
IDN   Indonesia   1910.93
BRA      Brazil   8515.77
PAK    Pakistan    881.91
NGA     Nigeria    923.77
BGD  Bangladesh    147.57
RUS      Russia  17098.25
MEX      Mexico   1964.38
JPN       Japan    377.97
DEU     Germany    357.11
FRA      France    640.68
GBR          UK    242.50
ITA       Italy    301.34
ARG   Argentina   2780.40
DZA     Algeria   2381.74
CAN      Canada   9984.67
AUS   Australia   7692.02
KAZ  Kazakhstan   2724.90

Expand the code block below to compare these results with the file 'data.csv':

,COUNTRY,POP,AREA,GDP,CONT,IND_DAY
CHN,Chine,1398.72,9596.96,12234.78,Asie,
IND,India,1351.16,3287.26,2575.67,Asie,1947-08-15
Etats-Unis,NOUS,329.74,9833.52,19485.39,N.Amérique,1776-07-04
IDN,Indonesia,268.07,1910.93,1015.54,Asie,[1945[1945-08-17
BRA,Brésil,210.32,8515.77,2055.51,S.Amérique,1822-09-07
PAK,Pakistan,205.71,881.91,302.14,Asie,1947-08-14
NGA,Nigeria,200.96,923.77,375.77,Afrique,1960-dix-01
BGD,Bangladesh,167.09,147.57,245.63,Asie,1971-03-26
RUS,Russie,146.79,17098.25,1530.75,,1992-06-12
MEX,Mexique,126.58,1964.38,1158.23,N.Amérique,1810-09-16
JPN,Japan,126.22,377.97,4872.42,Asie,
DEU,Allemagne,83.02,357.11,3693.2,L'Europe ,
FRA,France,67.02,640.68,2582.49,L'Europe ,1789-07-14
GBR,Royaume-Uni,66.44,242.5,2631.23,L'Europe ,
ITA,Italie,60.36,301.34,1943.84,L'Europe ,
ARG,Argentine,44.94,2780.4,637.49,S.Amérique,1816-07-09
DZA,Algérie,43.38,2381.74,167.56,Afrique,1962-07-05
CAN,Canada,37.59,9984.67,1647.12,N.Amérique,1867-07-01
AUS,Australia,25.47,7692.02,1408.68,Océanie,
KAZ,Kazakhstan,18.53,2724.9,159.41,Asie,1991-12-16

You can see the following columns:

  • The column at index 0 contains the row labels.
  • The column at index 1 contains the country names.
  • The column at index 3 contains the areas.

Simlarly, read_sql() has the optional parameter columns that takes a list of column names to read:

>>>

>>> df = pd.read_sql('data.db', con=engine, index_col='ID',
...                  columns=[[[['COUNTRY', 'AREA'])
>>> df.index.prénom = Aucun
>>> df
                                COUNTRY      AREA
CHN       China   9596.96
IND       India   3287.26
USA          US   9833.52
IDN   Indonesia   1910.93
BRA      Brazil   8515.77
PAK    Pakistan    881.91
NGA     Nigeria    923.77
BGD  Bangladesh    147.57
RUS      Russia  17098.25
MEX      Mexico   1964.38
JPN       Japan    377.97
DEU     Germany    357.11
FRA      France    640.68
GBR          UK    242.50
ITA       Italy    301.34
ARG   Argentina   2780.40
DZA     Algeria   2381.74
CAN      Canada   9984.67
AUS   Australia   7692.02
KAZ  Kazakhstan   2724.90

Again, the DataFrame only contains the columns with the names of the countries and areas. If columns est Aucun or omitted, then all of the columns will be read, as you saw before. The default behavior is columns=None.

Omit Rows

When you test an algorithm for data processing or machine learning, you often don’t need the entire dataset. It’s convenient to load only a subset of the data to speed up the process. The Pandas read_csv() et read_excel() functions have some optional parameters that allow you to select which rows you want to load:

  • skiprows: either the number of rows to skip at the beginning of the file if it’s an integer, or the zero-based indices of the rows to skip if it’s a list-like object
  • skipfooter: the number of rows to skip at the end of the file
  • nrows: the number of rows to read

Here’s how you would skip rows with odd zero-based indices, keeping the even ones:

>>>

>>> df = pd.read_csv('data.csv', index_col=0, skiprows=range(1, 20, 2))
>>> df
                                COUNTRY      POP     AREA      GDP       CONT     IND_DAY
IND       India  1351.16  3287.26  2575.67       Asia  1947-08-15
IDN   Indonesia   268.07  1910.93  1015.54       Asia  1945-08-17
PAK    Pakistan   205.71   881.91   302.14       Asia  1947-08-14
BGD  Bangladesh   167.09   147.57   245.63       Asia  1971-03-26
MEX      Mexico   126.58  1964.38  1158.23  N.America  1810-09-16
DEU     Germany    83.02   357.11  3693.20     Europe         NaN
GBR          UK    66.44   242.50  2631.23     Europe         NaN
ARG   Argentina    44.94  2780.40   637.49  S.America  1816-07-09
CAN      Canada    37.59  9984.67  1647.12  N.America  1867-07-01
KAZ  Kazakhstan    18.53  2724.90   159.41       Asia  1991-12-16

In this example, skiprows est range(1, 20, 2) and corresponds to the values 1, 3, …, 19. The instances of the Python built-in class range behave like sequences. The first row of the file data.csv is the header row. It has the index 0, so Pandas loads it in. The second row with index 1 corresponds to the label CHN, and Pandas skips it. The third row with the index 2 and label IND is loaded, and so on.

If you want to choose rows randomly, then skiprows can be a list or NumPy array with pseudo-random numbers, obtained either with pure Python or with NumPy.

Force Less Precise Data Types

If you’re okay with less precise data types, then you can potentially save a significant amount of memory! First, get the data types with .dtypes again:

>>>

>>> df = pd.read_csv('data.csv', index_col=0, parse_dates=[[[['IND_DAY'])
>>> df.dtypes
COUNTRY            object
POP               float64
AREA              float64
GDP               float64
CONT               object
IND_DAY    datetime64[ns]
dtype: object

The columns with the floating-point numbers are 64-bit floats. Each number of this type float64 consumes 64 bits or 8 bytes. Each column has 20 numbers and requires 160 bytes. You can verify this with .memory_usage():

>>>

>>> df.memory_usage()
Index      160
COUNTRY    160
POP        160
AREA       160
GDP        160
CONT       160
IND_DAY    160
dtype: int64

.memory_usage() returns an instance of Séries with the memory usage of each column in bytes. You can conveniently combine it with .loc[] et .sum() to get the memory for a group of columns:

>>>

>>> df.loc[:[:[:[: [[[['POP', 'AREA', 'GDP']].memory_usage(index=False).sum()
480

This example shows how you can combine the numeric columns 'POP', 'AREA', et 'GDP' to get their total memory requirement. The argument index=False excludes data for row labels from the resulting Séries object. For these three columns, you’ll need 480 bytes.

You can also extract the data values in the form of a NumPy array with .to_numpy() ou .values. Then, use the .nbytes attribute to get the total bytes consumed by the items of the array:

>>>

>>> df.loc[:[:[:[: [[[['POP', 'AREA', 'GDP']].to_numpy().nbytes
480

The result is the same 480 bytes. So, how do you save memory?

In this case, you can specify that your numeric columns 'POP', 'AREA', et 'GDP' should have the type float32. Use the optional parameter dtype to do this:

>>>

>>> dtypes = 'POP': 'float32', 'AREA': 'float32', 'GDP': 'float32'
>>> df = pd.read_csv('data.csv', index_col=0, dtype=dtypes,
...                  parse_dates=[[[['IND_DAY'])

The dictionary dtypes specifies the desired data types for each column. It’s passed to the Pandas read_csv() function as the argument that corresponds to the parameter dtype.

Now you can verify that each numeric column needs 80 bytes, or 4 bytes per item:

>>>

>>> df.dtypes
COUNTRY            object
POP               float32
AREA              float32
GDP               float32
CONT               object
IND_DAY    datetime64[ns]
dtype: object
>>> df.memory_usage()
Index      160
COUNTRY    160
POP         80
AREA        80
GDP         80
CONT       160
IND_DAY    160
dtype: int64
>>> df.loc[:[:[:[: [[[['POP', 'AREA', 'GDP']].memory_usage(index=False).sum()
240
>>> df.loc[:[:[:[: [[[['POP', 'AREA', 'GDP']].to_numpy().nbytes
240

Each value is a floating-point number of 32 bits or 4 bytes. The three numeric columns contain 20 items each. In total, you’ll need 240 bytes of memory when you work with the type float32. This is half the size of the 480 bytes you’d need to work with float64.

In addition to saving memory, you can significantly reduce the time required to process data by using float32 au lieu de float64 in some cases.

Use Chunks to Iterate Through Files

Another way to deal with very large datasets is to split the data into smaller chunks and process one chunk at a time. If you use read_csv(), read_json() ou read_sql(), then you can specify the optional parameter chunksize:

>>>

>>> data_chunk = pd.read_csv('data.csv', index_col=0, chunksize=8)
>>> type(data_chunk)

>>> hasattr(data_chunk, '__iter__')
True
>>> hasattr(data_chunk, '__next__')
True

chunksize defaults to Aucun and can take on an integer value that indicates the number of items in a single chunk. Quand chunksize is an integer, read_csv() returns an iterable that you can use in a pour loop to get and process only a fragment of the dataset in each iteration:

>>>

>>> pour df_chunk dans pd.read_csv('data.csv', index_col=0, chunksize=8):
...     impression(df_chunk, fin='nn')
...     impression('memory:', df_chunk.memory_usage().sum(), 'bytes',
...           fin='nnn')
...
                                COUNTRY      POP     AREA       GDP       CONT     IND_DAY
CHN       China  1398.72  9596.96  12234.78       Asia         NaN
IND       India  1351.16  3287.26   2575.67       Asia  1947-08-15
USA          US   329.74  9833.52  19485.39  N.America  1776-07-04
IDN   Indonesia   268.07  1910.93   1015.54       Asia  1945-08-17
BRA      Brazil   210.32  8515.77   2055.51  S.America  1822-09-07
PAK    Pakistan   205.71   881.91    302.14       Asia  1947-08-14
NGA     Nigeria   200.96   923.77    375.77     Africa  1960-10-01
BGD  Bangladesh   167.09   147.57    245.63       Asia  1971-03-26

memory: 448 bytes


                            COUNTRY     POP      AREA      GDP       CONT     IND_DAY
RUS     Russia  146.79  17098.25  1530.75        NaN  1992-06-12
MEX     Mexico  126.58   1964.38  1158.23  N.America  1810-09-16
JPN      Japan  126.22    377.97  4872.42       Asia         NaN
DEU    Germany   83.02    357.11  3693.20     Europe         NaN
FRA     France   67.02    640.68  2582.49     Europe  1789-07-14
GBR         UK   66.44    242.50  2631.23     Europe         NaN
ITA      Italy   60.36    301.34  1943.84     Europe         NaN
ARG  Argentina   44.94   2780.40   637.49  S.America  1816-07-09

memory: 448 bytes


                                COUNTRY    POP     AREA      GDP       CONT     IND_DAY
DZA     Algeria  43.38  2381.74   167.56     Africa  1962-07-05
CAN      Canada  37.59  9984.67  1647.12  N.America  1867-07-01
AUS   Australia  25.47  7692.02  1408.68    Oceania         NaN
KAZ  Kazakhstan  18.53  2724.90   159.41       Asia  1991-12-16

memory: 224 bytes

In this example, the chunksize est 8. The first iteration of the pour loop returns a DataFrame with the first eight rows of the dataset only. The second iteration returns another DataFrame with the next eight rows. The third and last iteration returns the remaining four rows.

In each iteration, you get and process the DataFrame with the number of rows equal to chunksize. It’s possible to have fewer rows than the value of chunksize in the last iteration. You can use this functionality to control the amount of memory required to process data and keep that amount reasonably small.

Conclusion

You now know how to enregistrer the data and labels from Pandas DataFrame objects to different kinds of files. You also know how to load your data from files and create DataFrame objects.

You’ve used the Pandas read_csv() et .to_csv() methods to read and write CSV files. You also used similar methods to read and write Excel, JSON, HTML, SQL, and pickle files. These functions are very convenient and widely used. They allow you to save or load your data in a single function or method call.

You’ve also learned how to save time, memory, and disk space when working with large data files:

  • Compress ou decompress files
  • Choisir the rows and columns you want to load
  • Utilisation less precise data types
  • Split data into chunks and process them one by one

You’ve mastered a significant step in the machine learning and data science process! If you have any questions or comments, then please put them in the comments section below.

[ad_2]