Menu

Table converter

Upload your CSV or XLSX file and convert it to a Logyx suitable table.

How to use the Logyx Table Converter:

  1. Fill in the name of the row and column, as well as the name for the cells inside (cross points). For example the first row represents the x-axis, that can be width. The first column will be the height, the y-axis. Lastly the cells inside will be the price.
  2. Click the 'Upload' button and select a CSV or XLSX file from your computer. The file should contain a table where the first column represents the height, the first row represents the width, and the cells inside contain prices corresponding to the respective height and width.
  3. Click 'Submit' to upload the file. The converter will read the file, process the table data, and convert it into a one-dimensional table.
  4. After processing, the converted file will be automatically downloaded to your computer in the XLSX format. This file contains a one-dimensional table where each row corresponds to a [height, width, price] tuple (or whichever names you specified).

Sample CSV input:

                Height;600;800;1000;1200
                600;135;144;166;183
                800;140;156;181;200
                1000;148;167;195;217
            

Sample XLSX input:

Similar to the CSV input, but in a .xlsx file format.

Sample output:

                Height, Width, Price
                - [600,600,135]
                - [600,800,144]
                ...
            

Hoe gebruik je de Logyx Table Converter:

  1. Vul de naam in van de rij, kolom en cellen ertussen (kruispunten). Bijvoorbeeld, de eerste rij van de dataset (x_as) is de wijdte. De eerste kolom (y-as) de hoogte en de prijs is de naam voor de kruispunten.
  2. Klik op de knop 'Upload' en selecteer een CSV- of XLSX-bestand van je computer. Het bestand moet een tabel bevatten waarbij de eerste kolom de hoogte voorstelt, de eerste rij de breedte voorstelt, en de cellen binnenin prijzen bevatten die overeenkomen met de respectievelijke hoogte en breedte.
  3. Klik op 'Submit' om het bestand te uploaden. De converter leest het bestand, verwerkt de tabelgegevens en zet deze om in een eendimensionale tabel.
  4. Na het verwerken wordt het geconverteerde bestand automatisch gedownload naar je computer in het XLSX-formaat. Dit bestand bevat een eendimensionale tabel waarbij elke rij overeenkomt met een [hoogte, breedte, prijs] tuple (of welke namen je ook ingezet hebt).

Voorbeeld CSV-invoer:

                Height;600;800;1000;1200
                600;135;144;166;183
                800;140;156;181;200
                1000;148;167;195;217
            

Voorbeeld XLSX-invoer:

Vergelijkbaar met de CSV-invoer, maar in een .xlsx-bestandsformaat.

Voorbeeld output:

            Height, Width, Price
            - [600,600,135]
            - [600,800,144]
            ...
            
Menu