Comment on page
Data
Get started putting data in the spreadsheet.
Self-explanatory, manually input your data. Quadratic enables rich copy-pasting from other sources (sheets, notepad, etc) into Quadratic. As you input your data, manually change formatting via the toolbar.
Simply drag the file from your system directly into the spreadsheet. Supports up to millions of rows in a few seconds, tops.

We are currently building this feature.
Connect to your data APIs to GET, POST, etc. Supported via the standard Python requests library. This simple example shows how to get your data from request to Pandas DataFrame.
import requests
import pandas as pd
response = requests.get('your_API_url_goes_here')
df = pd.DataFrame(response.json())
This is not currently supported. To import your Excel file's data to Quadratic you can save as .CSV and then use the .CSV drag and drop feature to import your data straight into Quadratic.
Last modified 6d ago