Python Project On Weather Dataset
Python project for Data Analytics_beginners
@kaggle.swatikhedekar_python_project_on_weather_dataset
Python project for Data Analytics_beginners
@kaggle.swatikhedekar_python_project_on_weather_dataset
Python Project for Data Analytics(Beginners)
(A part of Big Data Analysis)
The Weather Dataset
Description:
The Weather Dataset is a time-series dataset with per-hour information about the weather condition at a particular location. It records Temperature, dew Point temperature, Relative humidity, Wind speed, Visibility, Pressure and conditions.
This Dataset available as a csv file. We are going to analyze this dataset using Pandas dataPython Project for Data Analytics (Beginners)
Workflow:
CREATE TABLE weather_data (
"date_time" TIMESTAMP,
"temp_c" DOUBLE,
"dew_point_temp_c" DOUBLE,
"rel_hum" BIGINT -- Rel Hum %,
"wind_speed_km_h" BIGINT,
"visibility_km" DOUBLE,
"press_kpa" DOUBLE,
"weather" VARCHAR
);
Anyone who has the link will be able to view this.