question,answer,columns_used,type,column_types,sample_answer Was there a day when the minimum temperature was below zero and it didn't rain?,True,"[tmin, prec]",boolean,"['number[double]', 'number[double]']",True Are there records where the solar radiation exceeds 10 but the maximum temperature was below 20?,True,"[sol, tmax]",boolean,"['number[double]', 'number[double]']",True Did any day with maximum wind speed above 15 also have average wind speed below 5?,True,"[racha, velmedia]",boolean,"['number[double]', 'number[double]']",False Were there days in the summer where the minimum temperature dropped below 10?,True,"[season, tmin]",boolean,"['category', 'number[double]']",False How many days had a maximum temperature above 30 degrees?,5500,[tmax],number,['number[double]'],3 "On average, what's the minimum temperature during winters?",2.7196082770831027,"[season, tmin]",number,"['category', 'number[double]']", How many unique days had solar radiation measurements?,28615,[sol],number,['number[double]'],15 What's the highest wind speed ever recorded?,32.2,[racha],number,['number[double]'],14.4 On which weekday did the highest temperature ever occur?,Friday,"[tmax, weekday_name]",category,"['number[double]', 'category']",Thursday In which season do we find the highest average solar radiation?,Summer,"[season, sol]",category,"['category', 'number[double]']",Summer Which month had the lowest average wind speed?,October,"[month_name, velmedia]",category,"['category', 'number[double]']",February On what date was the highest pressure ever recorded?,2016-12-22T00:00:00Z,"[presMax, fecha]",category,"['number[double]', 'date[ns, UTC]']",1950-02-14T00:00:00Z What are the top 3 months with the highest average maximum temperatures?,"['July', 'August', 'June']","[month_name, tmax]",list[category],"['category', 'number[double]']","['July', 'August', 'September']" "Which are the 5 weekdays with the most rain, ranked from highest to lowest?","['Friday', 'Sunday', 'Saturday', 'Thursday', 'Wednesday']","[weekday_name, prec]",list[category],"['category', 'number[double]']","['Saturday', 'Sunday', 'Wednesday', 'Thursday', 'Tuesday']" "List the 4 seasons ranked by average solar radiation, from highest to lowest.","['Summer', 'Spring', 'Autumn', 'Winter']","[season, sol]",list[category],"['category', 'number[double]']","['Summer', 'Autumn', 'Spring', 'Winter']" Which 2 months recorded the lowest average minimum temperatures?,"['January', 'December']","[month_name, tmin]",list[category],"['category', 'number[double]']","['February', 'December']" List the top 5 recorded maximum temperatures.,"[40.7, 40.6, 40.0, 40.0, 40.0]",[tmax],list[number],['number[double]'],"[37.5, 36.0, 33.3, 28.6, 26.6]" What are the 4 lowest wind speeds ever recorded?,"[0.0, 0.0, 0.0, 0.0]",[velmedia],list[number],['number[double]'],"[0.3, 0.3, 0.3, 0.8]" Rank the highest 3 solar radiation measurements.,"[14.9, 14.8, 14.7]",[sol],list[number],['number[double]'],"[13.0, 12.7, 12.3]" Which 6 days of the year (numbered from 1 to 365/366) had the highest average temperatures?,"[209, 210, 208, 207, 211, 205]","[dayofyear, tmed]",list[number],"['number[uint16]', 'number[double]']","[208, 206, 205, 235, 260, 103]"