It is time series data set with per_hour information about wether condtion at perticuler location.it records Temparature,Dew point temperture,relative humidity,wind speed,visibilty,pressure and condtions.
This project involves the analysis of a time series dataset containing hourly weather conditions at a specific location. The dataset includes various weather parameters such as temperature, dew point temperature, relative humidity, wind speed, visibility, pressure, and weather conditions.
To find unique values in the dataset. ๐
To count occurrences of unique values in a column. ๐
To extract specific data based on conditions. ๐ฏ
To group data and retrieve specific groups. ๐
To identify and handle null values. ๐ซ
To rename columns in the dataframe. โ๏ธ
To calculate the average of data. โ
To calculate the standard deviation of data. ๐
To filter string data. ๐
To combine multiple conditions. โ๏ธ
Displays the first N rows of the data (default is 5). ๐
Provides the dimensions of the dataframe (rows, columns). ๐
Gives the index of the dataframe. ๐
Lists all column names. ๐ท๏ธ
Shows the data types of each column. ๐งฉ
Lists unique values in a column. ๐๏ธ
Counts the number of unique values in columns. ๐ข
Counts non-null values in columns. ๐
Counts occurrences of unique values in a column. ๐งฎ
Provides a summary of the dataframe. ๐
Find all unique 'Wind Speed' values in the data. ๐จ
Count occurrences of 'Weather is exactly Clear'. โ๏ธ
Count occurrences of 'Wind Speed was exactly 4 km/h'. ๐ฌ๏ธ
Identify all Null Values in the data. ๐ซ
Rename the column 'Weather' to 'Weather Condition'. ๐
Calculate the mean 'Visibility'. ๐
Determine the Standard Deviation of 'Pressure'. โ๏ธ
Find the Variance of 'Relative Humidity'. ๐ง
Identify instances when 'Snow' was recorded. โ๏ธ
Find instances when 'Wind Speed is above 24' and 'Visibility is 25'. ๐ช๏ธ
Calculate the Mean value of each column against each 'Weather Condition'. ๐
Determine the Minimum & Maximum value of each column against each 'Weather Condition'. ๐๐
Display records where 'Weather Condition is Fog'. ๐ซ๏ธ