Ari commited on
Commit
174d2a6
1 Parent(s): 4739b1f

Upload 3 files

Browse files
default_data.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Date,Sales,Region,Product
2
+ 2024-01-01,1000,North America,Product A
3
+ 2024-01-02,1500,Europe,Product B
4
+ 2024-01-03,2000,Asia,Product A
5
+ 2024-01-04,2500,North America,Product C
6
+ 2024-01-05,3000,Europe,Product A
7
+ 2024-01-06,3500,Asia,Product B
8
+ 2024-01-07,4000,North America,Product A
9
+ 2024-01-08,4500,Europe,Product C
default_metadata.csv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Column Name,Description,Data Type
2
+ Date,The date when the sales were recorded,Date
3
+ Sales,The amount of sales in USD,Integer
4
+ Region,The geographical region where the sales occurred,String
5
+ Product,The product category sold,String
default_metadata.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"columns": {"Date": {"description": "The date when the sales were recorded", "data_type": "date"}, "Sales": {"description": "The amount of sales in USD", "data_type": "integer"}, "Region": {"description": "The geographical region where the sales occurred", "data_type": "string"}, "Product": {"description": "The product category sold", "data_type": "string"}}, "insight_type": "time-series", "preferred_visualization": "line_chart", "notes": "This dataset is used for sales analysis over different regions and products."}