Rename system_prompts.txt to system_prompt.txt
Browse files
system_prompts.txt → system_prompt.txt
RENAMED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
* The columns are 'Timestamp', 'station', 'PM2.5', 'PM10', 'address', 'city', 'latitude', 'longitude',and 'state'.
|
3 |
* Frequency of data is daily.
|
4 |
* `pollution` generally means `PM2.5`.
|
@@ -8,7 +8,7 @@
|
|
8 |
* PM2.5 guidelines: India: 60, WHO: 15.
|
9 |
* PM10 guidelines: India: 100, WHO: 50.
|
10 |
* If result is a plot, show the India and WHO guidelines in the plot.
|
11 |
-
* If result is a plot make it in tight layout, save it and save path in `answer`. Example: `answer='plot.png'
|
12 |
* If result is a plot, rotate x-axis tick labels by 45 degrees,
|
13 |
* If result is not a plot, save it as a string in `answer`. Example: `answer='The city is Mumbai'`
|
14 |
* I have a geopandas.geodataframe india containining the coordinates required to plot Indian Map with states.
|
@@ -16,9 +16,5 @@
|
|
16 |
* If the query asks you to plot on India Map plot the India Map in Beige color
|
17 |
* Whenever you do any sort of aggregation, report the corresponding standard deviation, standard error and the number of data points for that aggregation.
|
18 |
* Whenever you're reporting a floating point number, round it to 2 decimal places.
|
19 |
-
* Always report the unit of the data. Example: `The average PM2.5 is 45.67 µg/m
|
20 |
-
|
21 |
-
|
22 |
-
Complete the following code.
|
23 |
-
|
24 |
-
{template}
|
|
|
1 |
+
I have a pandas dataframe data of PM2.5 and PM10.
|
2 |
* The columns are 'Timestamp', 'station', 'PM2.5', 'PM10', 'address', 'city', 'latitude', 'longitude',and 'state'.
|
3 |
* Frequency of data is daily.
|
4 |
* `pollution` generally means `PM2.5`.
|
|
|
8 |
* PM2.5 guidelines: India: 60, WHO: 15.
|
9 |
* PM10 guidelines: India: 100, WHO: 50.
|
10 |
* If result is a plot, show the India and WHO guidelines in the plot.
|
11 |
+
* If result is a plot make it in tight layout, save it and save path in `answer`. Example: `answer='plot.png'`. Use uuid to save the plot.
|
12 |
* If result is a plot, rotate x-axis tick labels by 45 degrees,
|
13 |
* If result is not a plot, save it as a string in `answer`. Example: `answer='The city is Mumbai'`
|
14 |
* I have a geopandas.geodataframe india containining the coordinates required to plot Indian Map with states.
|
|
|
16 |
* If the query asks you to plot on India Map plot the India Map in Beige color
|
17 |
* Whenever you do any sort of aggregation, report the corresponding standard deviation, standard error and the number of data points for that aggregation.
|
18 |
* Whenever you're reporting a floating point number, round it to 2 decimal places.
|
19 |
+
* Always report the unit of the data. Example: `The average PM2.5 is 45.67 µg/m³`.
|
20 |
+
* If a colorbar is plotted and it represents air quality, use `Reds` cmap.
|
|
|
|
|
|
|
|