,question,train_code 2700,"In February 2020, which state registered the 2nd lowest median PM10?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2701,"In the year 2024, which season (Winter, Summer, Monsoon, Post-Monsoon) recorded the third-lowest average PM10 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'COMPUTE_SEASON', 'params': {}}, {'op': 'AGG', 'params': {'by': 'season', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'season'}}] " 2702,Which station noted the peak 25th percentile of PM2.5 during the Post-Monsoon season of 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2703,Which station recorded the highest 75th percentile of PM2.5 in January 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 1}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2704,How many stations in Chhattisgarh exceeded 45 µg/m³ of PM10 in the year 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 45.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2705,"In September 2023, which station registered the 3rd highest average PM10?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2706,Identify the state with the lowest 25th percentile of PM10 in January 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 1}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2707,"On March 31, 2018, which state had the minimum average PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2708,"In October 2023, identify the station with the highest average PM2.5."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2709,Identify the state that showed the highest rise in its 25th percentile PM10 level from September 2019 to September 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2710,Report which station possessed the highest 75th percentile of PM10 throughout the Post-Monsoon season of 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2711,Report which state possessed the 2nd highest median PM2.5 throughout the Summer season of 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2712,Which city experienced the highest 25th percentile for PM10 in the Summer season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2713,Report the city with the 3rd highest median PM10 in June 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2714,Determine the state exhibiting the 3rd highest average PM10 in February 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2715,"Over all years, which December registered the second-highest median PM2.5 levels?"," [{'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'Timestamp'}}] " 2716,"In September 2020, which city exhibited the 3rd highest 25th percentile of PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2717,"On March 31, 2023, which city recorded the third-lowest 25th percentile of PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2718,Identify the station that showed the most minimal 25th percentile of PM10 during the Monsoon season of 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2719,Which station showed the third-highest median PM2.5 in August 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2720,"On March 31, 2022, which city had the third-lowest 75th percentile of PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2721,Which state noted the 2nd lowest 25th percentile of PM10 in the Post-Monsoon season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2722,Report the state with the 3rd highest average PM10 in October 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2723,Which city experienced the 2nd highest 25th percentile for PM10 in the Monsoon season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2724,Identify the station that recorded the 3rd lowest median PM10 value in March 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2725,"Report the state (excluding UTs) having the 2nd largest population within the top 3 most polluted states, when pollution is measured by average PM2.5 levels."," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 3, 'ret': 'state'}}] " 2726,"In May 2022, report the station with the 3rd lowest median PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2727,Report the city that had the 2nd lowest 75th percentile of PM2.5 in November 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2728,"In June 2021, which city registered the 2nd lowest 25th percentile of PM10?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2729,Which city had the 2nd highest 25th percentile of PM2.5 in January 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 1}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2730,Which station registered the 3rd highest average PM2.5 during January 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 1}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2731,Which state registered the 3rd lowest 25th percentile of PM10 during November 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2732,How many times did Srinagar city exceed the Indian guideline for PM10 in the year 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2733,"On March 31, 2018, which station recorded the minimum 25th percentile for PM10?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2734,Report the state ranking 3rd highest in pollution from per capita PM2.5 exposure for 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'COMPUTE', 'params': {'new_col': 'per_capita_pm', 'numerator': 'PM2.5', 'denominator': 'population'}}, {'op': 'SORT', 'params': {'col': 'per_capita_pm', 'ascending': False}}] " 2735,How many times did Hanumangarh city exceed the Indian guideline for PM2.5 in the year 2017?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2017}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2736,Which station displayed the 2nd highest 75th percentile of PM2.5 in November 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2737,Which station registered the 3rd lowest median PM10 during April 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 4}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2738,"Identify the station with the second-lowest average PM10 on March 31, 2020."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'station'}}] " 2739,"Which union territory possesses the 2nd smallest land area among the top 4 most polluted union territories, based on the variance of PM10 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'var', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': True}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 4, 'ret': 'state'}}] " 2740,Report the state with the 2nd highest 25th percentile of PM10 in May 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2741,"In March 2018, report the city with the 3rd highest median PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2742,Which city showed the lowest median PM10 in December 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2743,"Which union territory with a land area below 1,000 km² shows the highest PM10 level, based on its variance of PM10 level?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'var', 'col': 'PM10'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': True}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}] " 2744,Determine the highest PM10 value recorded in 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'PM10'}}] " 2745,What number of Uttar Pradesh stations exceeded the Indian guideline for PM10 in 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2746,Identify the state that registered the peak 75th percentile of PM10 during the Summer season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2747,Which state had the most pronounced increase in average PM10 levels when comparing August 2019 to August 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2748,Which week in 2022 was linked to the highest 75th percentile for PM2.5 levels?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'week'}}] " 2749,"On March 31, 2024, which station recorded the third-highest average PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2750,Report which city possessed the third lowest 75th percentile of PM2.5 throughout the Post-Monsoon season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2751,"Comparing November 2019 with November 2020, which station experienced the largest increase in its 25th percentile PM2.5 level?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2752,"Considering 2022, what week number displayed the lowest average PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'week'}}] " 2753,Report which state experienced the 2nd most minimal median PM2.5 throughout the Summer season of 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2754,"Identify the station with the third-lowest PM2.5 readings on January 14, 2018."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2755,"Considering 2023, what week number had the third-highest average PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'week'}}] " 2756,How many times did Bangalore city surpass 45 µg/m³ of PM10 in 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 45.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2757,Which city displayed the lowest average PM10 in May 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2758,"In November 2022, report the state with the 2nd lowest 25th percentile of PM2.5."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2759,How many times did Siwan city exceed the WHO guideline for PM2.5 in the year 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 15.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2760,"For the period October to December 2024, which state had the second smallest decrease in median PM10 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2761,"In June 2020, which state recorded the 2nd lowest average PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2762,Which city exhibited the 2nd lowest average PM10 in August 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2763,"For the year 2019, which week had the second-highest average PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'week'}}] " 2764,Which state recorded the 3rd highest average PM10 during the Summer season of 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2765,Identify the city that registered the minimum average PM2.5 level historically.," [{'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2766,"Which state (excluding Union Territories) possesses the 2nd smallest land area among the top 10 most polluted states, based on average PM10 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 10, 'ret': 'state'}}] " 2767,Report the city with the 2nd lowest average PM10 in April 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 4}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2768,Which station registered the 3rd minimum median PM10 in the Winter season of 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2769,Report the city with the 3rd highest 75th percentile of PM2.5 in February 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2770,"In November 2024, identify the city with the 3rd highest 25th percentile of PM2.5."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2771,Determine the state exhibiting the 2nd highest 75th percentile of PM10 over the Winter season of 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2772,Which city registered the highest median PM2.5 during November 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2773,"For the period October to December 2023, which city had the largest decrease in 75th percentile PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2774,"Among all states, which one showed the third-highest PM2.5 readings during the April 2020 COVID-19 lockdown?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2775,"Which city showed the third-lowest average PM2.5 on March 31, 2024?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2776,Which state had the second-most minimal median PM10 in October 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2777,Identify the city with the lowest 75th percentile for PM10 in November 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2778,Which city had the 2nd highest 25th percentile of PM2.5 in December 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2779,Identify the state that saw the least significant fall in average PM2.5 levels when comparing December 2022 to October 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2780,Identify the state that recorded the 3rd lowest average PM10 value in February 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2781,Identify the city with the lowest 75th percentile of PM2.5 in August 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2782,Which station recorded the lowest average for PM2.5 in the Summer season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2783,Determine the city with the 3rd lowest 75th percentile of PM10 in January 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 1}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2784,Which station had the 3rd lowest 75th percentile of PM2.5 in June 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2785,Determine the state with the second highest PM10 level on 27 January 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2786,Determine the station exhibiting the 3rd most minimal median PM10 over the Winter season of 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2787,Which state experienced the 2nd lowest 25th percentile for PM10 in the Post-Monsoon season of 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2788,Identify the city that recorded the peak 25th percentile of PM2.5 during the Monsoon season of 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2789,Identify the city that recorded the 3rd lowest 25th percentile of PM10 value in July 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2790,Determine the state with the highest 75th percentile of PM2.5 in May 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2791,Report the city with the 5th lowest NCAP funding relative to the variance of its PM10 concentration in 2022 (FY 2021-22).," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'var', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'city', 'source': 'ncap'}}, {'op': 'COMPUTE', 'params': {'new_col': 'funding_per_pm', 'numerator': 'fy2022_fund', 'denominator': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'funding_per_pm', 'ascending': True}}] " 2792,Determine the state exhibiting the 3rd lowest 25th percentile of PM10 in May 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2793,"In December 2022, identify the city with the 3rd highest median PM2.5."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2794,How many times did Bidar city go above the Indian guideline for PM10 in 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2795,Determine the state with the peak median PM2.5 concentration for September 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2796,Which city had the lowest median PM2.5 in June 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2797,Which city noted the 2nd minimum average PM2.5 in the Summer season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2798,Which station experienced the highest rise in its 25th percentile PM10 level between September 2019 and September 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2799,Which state possessed the 3rd highest average for PM10 in the Summer season of 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2800,Report the state that had the lowest average PM2.5 in September 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2801,Determine the station exhibiting the 2nd lowest 75th percentile of PM2.5 in September 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'station'}}] " 2802,Identify the city with the 2nd lowest 25th percentile of PM10 for July 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2803,Identify the station with the 2nd highest 75th percentile of PM2.5 for March 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2804,Determine the state with the smallest count of cities receiving NCAP funding.," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'nunique', 'col': 'city'}}, {'op': 'SORT', 'params': {'col': 'city', 'ascending': True}}] " 2805,How many times did Haryana exceed 75 µg/m³ of PM2.5 in 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 75.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2806,"In 2018, which state will rank with the third smallest reduction in 25th percentile PM10 levels from October to December?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2807,"For 2019, which week of the year experienced the highest 25th percentile for PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'week'}}] " 2808,How many times did Odisha surpass 90 µg/m³ of PM10 in the year 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 90.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2809,Which state exhibits the 2nd highest average PM2.5 concentration relative to its population density?," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'COMPUTE', 'params': {'new_col': 'pm_per_capita', 'numerator': 'PM2.5', 'denominator': 'population'}}, {'op': 'SORT', 'params': {'col': 'pm_per_capita', 'ascending': False}}] " 2810,Which station had the lowest average PM2.5 in February 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2811,"In 2019, which season (Winter, Summer, Monsoon, Post-Monsoon) was associated with the third-highest 25th percentile of PM2.5 concentrations?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'COMPUTE_SEASON', 'params': {}}, {'op': 'AGG', 'params': {'by': 'season', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'season'}}] " 2812,How many times did Bangalore city exceed 90 µg/m³ of PM10 in the year 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 90.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2813,Determine the station that recorded the second most minimal average PM2.5 over the Monsoon season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'station'}}] " 2814,Report the city with the 2nd highest average PM10 in July 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2815,"In September 2022, identify the city with the 3rd highest median PM2.5."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2816,How many times did Begusarai city surpass 30 µg/m³ of PM10 in the year 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 30.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2817,"Determine the state, out of those with populations above the average, that obtains the 3rd lowest per capita NCAP funding."," [{'op': 'COMPUTE', 'params': {'new_col': 'funding_per_capita', 'numerator': 'total_fund', 'denominator': 'population'}}, {'op': 'SORT', 'params': {'col': 'funding_per_capita', 'ascending': True}}] " 2818,Identify the state that showed the third lowest 75th percentile of PM2.5 during the Summer season of 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2819,How many times did Pratapgarh city exceed 75 µg/m³ of PM2.5 in 2017?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2017}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 75.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2820,Which state recorded the 3rd highest 25th percentile of PM2.5 in May 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2821,Which state had the 3rd highest 75th percentile of PM2.5 in December 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2822,"During 2023, which week saw the second-highest 25th percentile for PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'week'}}] " 2823,"In July 2024, identify the state with the lowest 75th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2824,"In 2018, which station ranked with the smallest decrease in 75th percentile PM10 levels from October to December?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2825,Which station recorded the 2nd lowest median PM2.5 in July 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'station'}}] " 2826,Which state registered the minimum average PM2.5 during the Monsoon season of 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2827,"In July 2021, report the station with the lowest median PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2828,"In 2023, which station will rank with the second largest reduction in 25th percentile PM2.5 levels from October to December?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2829,"For the period October to December 2020, which state had the smallest decrease in 75th percentile PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2830,Identify the station that registered the third lowest 25th percentile of PM10 during the Summer season of 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2831,How many times did Manipur exceed 75 µg/m³ of PM2.5 in 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 75.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2832,Report the city with the 3rd lowest 25th percentile of PM10 in March 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2833,Report the city with the 2nd lowest 75th percentile of PM10 in August 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2834,"Which state (excluding UTs) possesses the 2nd largest population among the top 5 most polluted states, determined by the 25th percentile of PM2.5 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 5, 'ret': 'state'}}] " 2835,Report which city possessed the third most minimal 25th percentile of PM10 throughout the Monsoon season of 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2836,Identify the state that recorded the 2nd lowest 25th percentile of PM10 value in July 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2837,Which city had the 2nd lowest 25th percentile of PM2.5 in December 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2838,Determine the state exhibiting the 3rd lowest median PM2.5 in June 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2839,"Which state with a land area below 50,000 km² shows the highest PM10 level, according to its standard deviation of PM10 level?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'std', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}] " 2840,How many times did Mandikhera city exceed 90 µg/m³ of PM2.5 in the year 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 90.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2841,Which station registered the 3rd lowest average PM10 during August 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2842,What number of Uttarakhand stations surpassed the Indian guideline for PM2.5 in 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2843,Identify the state that saw the most significant fall in median PM2.5 levels when comparing December 2020 to October 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2844,Find the state with the second-lowest 25th percentile for PM2.5 in February 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2845,"In 2019, which day of the week corresponded to the third-highest median PM10 pollution levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'Timestamp'}}] " 2846,"In June 2019, which city registered the 2nd lowest 75th percentile of PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2847,"Which state having a land area exceeding 50,000 km² registers the minimum PM10 level, based on its total PM10 level?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'sum', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}] " 2848,Which city had the 3rd lowest average PM2.5 in February 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2849,Which state recorded the lowest 25th percentile of PM2.5 in December 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2850,Determine the state exhibiting the lowest 25th percentile of PM10 in August 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2851,How many times did Akola exceed the Indian guideline for PM10 in the year 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2852,Determine the station exhibiting the 2nd highest average PM10 in February 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2853,Determine the state with the highest average PM2.5 in April 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 4}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2854,How many stations in Andhra Pradesh exceeded 75 µg/m³ of PM10 in the year 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 75.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2855,"For 2018, identify the weekday with the highest 25th percentile of PM10 pollution levels."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'Timestamp'}}] " 2856,"Comparing January 2019 with January 2020, which state experienced the largest increase in its 75th percentile PM10 level?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2857,"Considering all years, which November showed the second-lowest 25th percentile of PM2.5 concentration?"," [{'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'Timestamp'}}] " 2858,How many times did Chandigarh exceed 75 µg/m³ of PM10 in the year 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 75.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2859,Which state had the lowest median PM10 in June 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2860,Identify the station with the lowest median PM2.5 in April 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 4}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2861,Identify the city exhibiting the peak median PM2.5 during the Summer season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2862,Which state had the 3rd lowest 25th percentile of PM10 in March 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2863,"Which month (e.g., January, February, etc.) from 2018-2024 has steadily recorded India's worst air quality index (AQI)?"," [{'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'Timestamp'}}] " 2864,Find the city with the lowest 25th percentile for PM2.5 in September 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2865,Report the state with the lowest average PM10 in November 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2866,"Report the state (excluding UTs) having the 3rd largest population among the top 10 most polluted states, when pollution is measured by variance of PM10 levels."," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'var', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 10, 'ret': 'state'}}] " 2867,Identify the city that recorded the second highest average PM2.5 during the Winter season of 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2868,"Which union territory with a land area greater than 1,000 km² shows the highest PM2.5 level, based on its median PM2.5 level?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': True}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': False}}] " 2869,How many times did Varanasi city go above 30 µg/m³ of PM10 in 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 30.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2870,Find the city that had the third-highest average PM10 in November 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2871,Identify the state that saw the second most significant fall in median PM10 levels when comparing December 2021 to October 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2872,Calculate the median PM2.5 level on Thursdays in Himachal Pradesh.," [{'op': 'FILTER', 'params': {'field': 'state', 'value': 'Himachal Pradesh'}}] " 2873,Report the state that had the 3rd highest 75th percentile of PM10 in October 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2874,Determine the station with the 3rd highest 25th percentile of PM10 in October 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2875,Determine the state with the 2nd lowest median PM2.5 in August 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2876,How many stations in Andhra Pradesh exceeded 90 µg/m³ of PM2.5 in the year 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 90.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2877,Which city had the 2nd highest median PM10 in May 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2878,How many times did Uttarakhand go above 45 µg/m³ of PM10 in 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 45.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2879,"Which state (excluding Union Territories) has the largest land area among the top 10 most polluted states, according to the variance of PM10 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'var', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 10, 'ret': 'state'}}] " 2880,Identify the city with the lowest NCAP funding considering its 25th percentile of PM2.5 concentration in 2022 (FY 2021-22).," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'city', 'source': 'ncap'}}, {'op': 'COMPUTE', 'params': {'new_col': 'funding_per_pm', 'numerator': 'fy2022_fund', 'denominator': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'funding_per_pm', 'ascending': True}}] " 2881,Identify the city with the lowest average PM2.5 for July 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2882,"Determine which state (excluding UTs) has the 3rd largest population within the top 3 most polluted states, based on median PM10 levels."," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 3, 'ret': 'state'}}] " 2883,Identify the station with the highest 25th percentile of PM10 for April 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 4}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2884,"In May 2019, identify the station with the 3rd highest 75th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2885,"In August 2020, identify the station with the highest 25th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2886,Which station recorded the 3rd highest 75th percentile of PM10 in November 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2887,Identify the state that registered the minimum 75th percentile for PM2.5 historically.," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2888,"Which state having a land area less than 50,000 km² registers the 5th minimum PM10 level, based on its 25th percentile PM10 level?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}] " 2889,Determine the state with the highest 75th percentile of PM2.5 in December 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2890,Report the city with the highest median PM2.5 in September 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2891,Report the city with the 4th lowest NCAP funding relative to the standard deviation of its PM10 concentration in 2022 (FY 2021-22).," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'std', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'city', 'source': 'ncap'}}, {'op': 'COMPUTE', 'params': {'new_col': 'funding_per_pm', 'numerator': 'fy2022_fund', 'denominator': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'funding_per_pm', 'ascending': True}}] " 2892,"In October 2018, which state recorded the 3rd lowest average PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2893,"Comparing December 2021 to October 2021, which station showed the least significant drop in median PM10 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2894,"On March 31, 2021, which state recorded the second-highest 25th percentile for PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2895,"In February 2021, report the city with the 2nd highest 25th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2896,"In January 2020, identify the state with the 2nd lowest 25th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 1}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2897,"In February 2021, identify the station with the 3rd highest average PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2898,Which station recorded the minimum 25th percentile of PM10 during the Post-Monsoon season of 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2899,Determine the city that recorded the most minimal median PM10 over the Winter season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2900,Which city had the highest 25th percentile of PM10 in June 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2901,How many times did Pimpri-Chinchwad city exceed 30 µg/m³ of PM10 in the year 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 30.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2902,Determine the state with the 3rd highest average PM10 in March 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2903,Identify the city exhibiting the 2nd highest 25th percentile of PM2.5 during the Post-Monsoon season of 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2904,Identify the state with the highest 75th percentile of PM10 for March 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2905,"Which union territory possesses the largest land area among the top 2 most polluted union territories, based on the variance of PM2.5 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'var', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': True}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 2, 'ret': 'state'}}] " 2906,"Comparing March 2019 with March 2020, which station showed the largest increase in average PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2907,Report which state possessed the third lowest 75th percentile of PM10 throughout the Monsoon season of 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2908,Which state experienced the highest 25th percentile for PM2.5 in the Post-Monsoon season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2909,"Which union territory possesses the 2nd smallest land area among the top 4 most polluted union territories, based on the 25th percentile of PM10 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': True}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 4, 'ret': 'state'}}] " 2910,Which state had the 3rd lowest average PM2.5 in May 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2911,Identify the station that recorded the lowest 25th percentile of PM10 value in September 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2912,Which city recorded the 2nd lowest 25th percentile of PM2.5 in October 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2913,Identify the state with the lowest median PM2.5 for February 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2914,"Considering 2022, what season (Winter, Summer, Monsoon, Post-Monsoon) displayed the lowest average PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'COMPUTE_SEASON', 'params': {}}, {'op': 'AGG', 'params': {'by': 'season', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'season'}}] " 2915,Which state showed the 2nd lowest 75th percentile of PM10 in April 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 4}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2916,Report the city that had the highest average PM10 in December 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2917,"In 2021, which station ranked with the third smallest decrease in average PM10 levels from October to December?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2918,How many times did Jammu and Kashmir city surpass the Indian guideline for PM10 in 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'Timestamp'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2919,Which state experienced the third most significant drop in its median PM10 levels between October and December 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2920,"Identify the state that experienced the lowest PM2.5 values on January 14, 2020."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2921,"In August 2024, identify the station with the 2nd highest median PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2922,"Report the state (excluding UTs) having the 2nd smallest population within the top 5 most polluted states, when pollution is measured by standard deviation of PM2.5 levels."," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'std', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 5, 'ret': 'state'}}] " 2923,Report the state with the 3rd highest 25th percentile of PM2.5 in September 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'state'}}] " 2924,"In 2020, which weekday experienced the third-lowest 75th percentile of PM2.5 pollution concentrations?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'Timestamp'}}] " 2925,"Comparing December 2020 to October 2020, which state showed the most significant drop in 75th percentile PM10 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2926,Which state noted the peak average PM2.5 in the Winter season of 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2927,Identify the station exhibiting the most minimal median PM2.5 during the Post-Monsoon season of 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2928,Which city registered the 3rd maximum 25th percentile of PM2.5 in the Monsoon season of 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2929,"Over all years, which October had the maximum average PM10 concentration?"," [{'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'Timestamp'}}] " 2930,"In October 2024, report the city with the 2nd lowest 25th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'city'}}] " 2931,Determine the station exhibiting the 2nd highest 75th percentile of PM10 over the Summer season of 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2932,"Across all recorded years, which June was associated with the minimum average PM10 levels?"," [{'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'Timestamp'}}] " 2933,"During 2018, which week saw the lowest 75th percentile for PM10 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'week'}}] " 2934,Which city recorded the 3rd highest 75th percentile of PM2.5 in June 2019?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2935,How many stations in Andhra Pradesh went above 90 µg/m³ of PM10 in the year 2017?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2017}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'FILTER', 'params': {'field': 'PM10', 'comparison': 'gt', 'value': 90.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2936,"On August 15, 2018, which city recorded the highest PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2937,How many stations in Uttar Pradesh exceeded the Indian guideline for PM2.5 in the year 2017?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2017}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'FILTER', 'params': {'field': 'PM2.5', 'comparison': 'gt', 'value': 60.0}}, {'op': 'COUNT_UNIQUE', 'params': {'col': 'station'}}, {'op': 'SELECT', 'params': {'mode': 'scalar', 'ret': 'count'}}] " 2938,Which station registered the 3rd highest 25th percentile of PM10 during August 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2939,Which city recorded the lowest median PM10 in June 2023?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2940,Report the state showing the 2nd lowest standard deviation of PM2.5 concentration in relation to its population density.," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'std', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'COMPUTE', 'params': {'new_col': 'pm_per_capita', 'numerator': 'PM2.5', 'denominator': 'population'}}, {'op': 'SORT', 'params': {'col': 'pm_per_capita', 'ascending': True}}] " 2941,Identify the city that saw the most significant growth in its 25th percentile PM2.5 level from November 2019 to November 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2942,Which station had the highest median PM2.5 in October 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2943,Determine which city has the maximum disparity between allocated NCAP funding and actual utilization as of June 2022.," [{'op': 'AGG', 'params': {'by': 'city', 'fn': 'sum', 'col': 'Difference'}}, {'op': 'SORT', 'params': {'col': 'Difference', 'ascending': False}}] " 2944,Determine the city with the highest 75th percentile of PM10 in March 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2945,Which city recorded the 2nd highest median PM2.5 in July 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2946,Which city experienced the lowest 25th percentile for PM10 in the Post-Monsoon season of 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2947,"Comparing March 2019 with March 2020, which city showed the largest increase in its 25th percentile PM10 level?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2948,Determine the median PM2.5 level on Sundays in Meghalaya.," [{'op': 'FILTER', 'params': {'field': 'state', 'value': 'Meghalaya'}}] " 2949,Identify the city where average PM2.5 levels rose most significantly from February 2019 to February 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2950,Identify the city exhibiting the third lowest 75th percentile of PM10 during the Post-Monsoon season of 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2951,"Identify the city with the third-highest average PM2.5 on March 31, 2018."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2952,Report the station with the 2nd lowest median PM2.5 in December 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 12}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'station'}}] " 2953,Which city reported the third-highest PM10 levels during the April 2020 COVID-19 lockdown?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2954,"Over all years, which March was associated with the second-highest median PM10 levels?"," [{'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'Timestamp'}}] " 2955,Which city showed the maximum stable PM2.5 level?," [{'op': 'AGG', 'params': {'by': 'city', 'fn': 'std', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2956,"For the period October to December 2023, which state had the second smallest decrease in average PM2.5 levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2957,Determine the state with the second-lowest 75th percentile for PM2.5 in November 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2958,Report which station registered the 2nd highest 25th percentile of PM2.5 throughout the Winter season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2959,Report which city registered the peak 75th percentile of PM10 throughout the Winter season of 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'winter', 'months': [12, 1, 2]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2960,Identify the station that recorded the 3rd lowest 75th percentile of PM2.5 value in October 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2961,Which city had the lowest median PM2.5 in March 2020?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2962,"For 2021, identify the week of the year with the second-lowest median PM10 levels."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'median', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'week'}}] " 2963,"Which state with a land area below 50,000 km² shows the minimum PM2.5 level, according to its total PM2.5 level?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'sum', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}] " 2964,Report which station registered the second highest PM2.5 level on 27 January 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2965,"Identify the city with the third-highest median PM2.5 on March 31, 2019."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2966,Identify the city that registered the peak 25th percentile for PM10 during the Post-Monsoon season of 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2967,"In June 2021, identify the state with the 2nd highest 25th percentile of PM10."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2968,Report the station with the highest 25th percentile of PM2.5 in October 2021.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 10}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2969,Determine the station exhibiting the most minimal 25th percentile of PM2.5 over the Post-Monsoon season of 2019.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2019}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'station'}}] " 2970,"On March 31, 2022, which city recorded the third-lowest median PM2.5?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2971,Determine the state exhibiting the lowest median PM2.5 in March 2024.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 3}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'median', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'state'}}] " 2972,Which station recorded the 3rd lowest average PM2.5 level?," [{'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2973,"Identify the station with the third-highest 25th percentile for PM2.5 on March 31, 2023."," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2974,Determine the city exhibiting the lowest average PM10 in August 2020.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2975,"In November 2018, which city exhibited the 3rd lowest average PM10?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2976,Which station registered the 3rd highest 25th percentile of PM10 during July 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 7}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'station'}}] " 2977,"For Ooty, what date in the last three years showed the second-lowest PM2.5 reading?"," [{'op': 'FILTER', 'params': {'field': 'yr_recent', 'value': 3}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'Timestamp'}}] " 2978,Identify the most polluted state based on per capita PM10 exposure during 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'COMPUTE', 'params': {'new_col': 'per_capita_pm', 'numerator': 'PM10', 'denominator': 'population'}}, {'op': 'SORT', 'params': {'col': 'per_capita_pm', 'ascending': False}}] " 2979,Which station registered the 2nd maximum median PM10 in the Post-Monsoon season of 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'autumn', 'months': [9, 10, 11]}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'median', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'station'}}] " 2980,Report the state that had the 2nd highest 25th percentile of PM2.5 in February 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 2}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'state'}}] " 2981,Which state registered the 2nd minimum average PM2.5 during the Monsoon season of 2021?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2021}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'summer', 'months': [6, 7, 8]}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2982,Identify the station with the highest 25th percentile of PM2.5 in November 2023.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2983,Which station showed the third-lowest 25th percentile for PM10 in May 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'station'}}] " 2984,Report the city with the 3rd highest 25th percentile of PM10 in May 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -3, 'ret': 'city'}}] " 2985,"Considering 2023, what day of the week had the second-highest median PM2.5 pollution levels?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'Timestamp'}}] " 2986,Report which city possessed the third most minimal average PM2.5 throughout the Summer season of 2018.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'city'}}] " 2987,"Across all recorded years, which December experienced the second-highest average PM2.5 levels?"," [{'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'Timestamp'}}] " 2988,Which city had the 2nd highest 75th percentile of PM2.5 in November 2024?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2024}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 11}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -2, 'ret': 'city'}}] " 2989,Identify the week in 2020 that registered the highest 25th percentile for PM2.5 levels.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'AGG', 'params': {'by': 'week', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'week'}}] " 2990,Which state recorded the third-lowest average PM2.5 reading for May 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 5}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'state'}}] " 2991,Identify the state with the 4th highest NCAP funding considering the variance of its PM10 concentration in 2020 (FY 2019-20).," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2020}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'var', 'col': 'PM10'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'ncap'}}, {'op': 'COMPUTE', 'params': {'new_col': 'funding_per_pm', 'numerator': 'fy2020_fund', 'denominator': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'funding_per_pm', 'ascending': False}}] " 2992,Which station had the highest average PM2.5 in September 2022?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 9}}, {'op': 'AGG', 'params': {'by': 'station', 'fn': 'mean', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'station'}}] " 2993,"In 2023, which city will rank third for the smallest reduction in 75th percentile PM2.5 levels from October to December?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'OR_FILTER', 'params': {'field': 'month', 'values': [10, 12]}}, {'op': 'PIVOT_DIFF', 'params': {'index': 'state', 'col_source': 'month', 'month_a': 10, 'month_b': 12, 'new_col': 'diff'}}, {'op': 'DROPNA', 'params': {'col': 'diff'}}, {'op': 'SORT', 'params': {'col': 'diff', 'ascending': True}}] " 2994,"Across all recorded years, which March showed the third-lowest 25th percentile of PM2.5 levels?"," [{'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 2, 'ret': 'Timestamp'}}] " 2995,Which city recorded the highest 75th percentile for PM10 in the Summer season of 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q75', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'city'}}] " 2996,Which city noted the minimum 25th percentile of PM10 during the Summer season of 2018?," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2018}}, {'op': 'FILTER', 'params': {'field': 'season', 'value': 'spring', 'months': [3, 4, 5]}}, {'op': 'AGG', 'params': {'by': 'city', 'fn': 'q25', 'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 0, 'ret': 'city'}}] " 2997,"In June 2023, which state exhibited the 2nd lowest average PM10?"," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2023}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 6}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'mean', 'col': 'PM10'}}, {'op': 'DROPNA', 'params': {'col': 'PM10'}}, {'op': 'SORT', 'params': {'col': 'PM10', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': 1, 'ret': 'state'}}] " 2998,Determine the state with the highest 25th percentile of PM2.5 in August 2022.," [{'op': 'FILTER', 'params': {'field': 'year', 'value': 2022}}, {'op': 'FILTER', 'params': {'field': 'month', 'value': 8}}, {'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'DROPNA', 'params': {'col': 'PM2.5'}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': True}}, {'op': 'SELECT', 'params': {'mode': 'rank', 'rank': -1, 'ret': 'state'}}] " 2999,"Which state (excluding Union Territories) possesses the 3rd largest land area among the top 3 most polluted states, based on the 25th percentile of PM2.5 levels?"," [{'op': 'AGG', 'params': {'by': 'state', 'fn': 'q25', 'col': 'PM2.5'}}, {'op': 'JOIN', 'params': {'on': 'state', 'source': 'states'}}, {'op': 'FILTER_JOIN', 'params': {'field': 'isUnionTerritory', 'value': False}}, {'op': 'SORT', 'params': {'col': 'PM2.5', 'ascending': False}}, {'op': 'SELECT', 'params': {'mode': 'head', 'n': 3, 'ret': 'state'}}] "