Diysb Tools

Convertir des lignes CSV en colonnes

Cet outil convertit les lignes d'un fichier CSV (valeurs séparées par des virgules) en colonnes. Il extrait les lignes horizontales du fichier CSV d'entrée une par une, les fait pivoter de 90 degrés et les affiche sous forme de colonnes verticales, l'une après l'autre, séparées par des virgules.', longDescription: 'Cet outil convertit les lignes d'un fichier CSV (valeurs séparées par des virgules) en colonnes. Par exemple, si les données CSV d'entrée comportent 6 lignes, la sortie comportera 6 colonnes et les éléments des lignes seront disposés de haut en bas. Dans un fichier CSV bien formé, le nombre de valeurs par ligne est le même. Cependant, si des lignes contiennent des champs manquants, le programme peut les corriger et vous pouvez choisir parmi les options disponibles : remplir les données manquantes avec des éléments vides ou remplacer les données manquantes par des éléments personnalisés, tels que « manquant », « ? » ou « x ». Pendant le processus de conversion, l'outil nettoie également le fichier CSV des informations inutiles, telles que les lignes vides (c'est-à-dire sans informations visibles) et les commentaires. Pour aider l'outil à identifier correctement les commentaires, vous pouvez spécifier dans les options le symbole au début d'une ligne qui démarre un commentaire. Ce symbole est généralement un dièse « # » ou une double barre oblique « // ». C'est incroyable !

Outils CSV

What is a Convertir des lignes CSV en colonnes?

Cet outil convertit les lignes d'un fichier CSV (valeurs séparées par des virgules) en colonnes. Par exemple, si les données CSV d'entrée comportent six lignes, le résultat comportera six colonnes et les éléments des lignes seront disposés de haut en bas. Dans un fichier CSV bien formé, le nombre de valeurs par ligne est identique. Cependant, si des champs manquent dans certaines lignes, le programme peut les corriger et vous pouvez choisir parmi les options disponibles : compléter les données manquantes avec des éléments vides ou les remplacer par des éléments personnalisés, tels que

Texte d'entrée
Résultat
Options d'outils
Fix incomplete data

If the input CSV file is incomplete (missing values), then add empty fields or custom symbols to records to make a well-formed CSV?

Use this custom value to fill in missing fields.
Lines with comments
Enter the symbol indicating the start of a comment line.
Convertir des lignes CSV en colonnes Exemples

Convert CSV Rows to Columns

In this example, we transform the input CSV file with a single horizontal row of six values "a,b,c,d,e,f" into a vertical column. The program takes this row, rotates it 90 degrees, and outputs it as a column with each CSV value on a new line. This operation can also be viewed as converting a 6-dimensional row vector into a 6-dimensional column vector.

a,b,c,d,e,f
a,b,c,d,e,f
a b c d e f
a b c d e f
Fix incomplete data

If the input CSV file is incomplete (missing values), then add empty fields or custom symbols to records to make a well-formed CSV?

Lines with comments
Enter the symbol indicating the start of a comment line.

Rows to Columns Transformation

In this example, we load a CSV file containing coffee varieties and their origins. The file is quite messy, with numerous empty lines and comments, and it is hard to work with. To clean up the file, we specify the comment pattern // in the options, and the program automatically removes the comment lines from the input. Also, the empty lines are automatically removed. Once the file is cleaned up, we transform the five clean rows into five columns, each having a height of two fields.

Variety,Origin Arabica,Ethiopia Robusta,Africa Liberica,Philippines Mocha,Yemen //green tea
Variety,Origin Arabica,Ethiopia Robusta,Africa Liberica,Philippines Mocha,Yemen //green tea
Variety,Arabica,Robusta,Liberica,Mocha Origin,Ethiopia,Africa,Philippines,Yemen
Variety,Arabica,Robusta,Liberica,Mocha Origin,Ethiopia,Africa,Philippines,Yemen
Fix incomplete data

If the input CSV file is incomplete (missing values), then add empty fields or custom symbols to records to make a well-formed CSV?

Lines with comments
Enter the symbol indicating the start of a comment line.

Fill Missing Data

In this example, we swap rows and columns in CSV data about team sports, the equipment used, and the number of players. The input has 5 rows and 3 columns and once rows and columns have been swapped, the output has 3 rows and 5 columns. Also notice that in the last data record, for the "Baseball" game, the number of players is missing. To create a fully-filled CSV, we use a custom message "NA", specified in the options, and fill the missing CSV field with this value.

Sport,Equipment,Players Basketball,Ball,5 Football,Ball,11 Soccer,Ball,11 Baseball,Bat & Ball
Sport,Equipment,Players Basketball,Ball,5 Football,Ball,11 Soccer,Ball,11 Baseball,Bat & Ball
Sport,Basketball,Football,Soccer,Baseball Equipment,Ball,Ball,Ball,Bat & Ball Players,5,11,11,NA
Sport,Basketball,Football,Soccer,Baseball Equipment,Ball,Ball,Ball,Bat & Ball Players,5,11,11,NA
Fix incomplete data

If the input CSV file is incomplete (missing values), then add empty fields or custom symbols to records to make a well-formed CSV?

Use this custom value to fill in missing fields.
Lines with comments
Enter the symbol indicating the start of a comment line.