Connect your Data
Explains how to set up and import data into the library.
This is where Phrazor allows you to provide data for analysis in two different ways. You can either directly pass data as a JSON or load data from a CSV file.
1. Set Data from JSON
You can set data by passing a JSON where keys represent column names, and values are lists of corresponding values. This method is useful when you have your data readily available in your Python script.
2. Set Data from CSV File
Alternatively, you can set data by loading it from a CSV file. Specify the path of the CSV file using the set_data method and set the is_csv parameter to True
. This method is useful when you have a large dataset stored in a CSV file.
Replace 'YOUR DATA PATH'
with the actual path of your CSV file.
These two methods provide flexibility in setting your data for analysis, allowing you to choose the approach that best suits your data source and workflow.
For the community cloud we have limited the number of data cells to 100000.
Please take note that the Date Column should contain values in the YYYY-MM-DD format and should not contain null values.
Last updated