Posts

Performing Analysis on Meteorological Data

Image
 In this blog or project we are going to analyze meteorological data, we will check trend of weather in past years, that how were remain those like wind speed, temperature, pressure, humidity, weather condition etc.                         Here we are going to use dataset of weatherHistory that is in excel format and analyze that, you can find this data from kaggle by this link ( https://www.kaggle.com/muthuj7/weather-dataset). This dataset contains hourly data of temperature and others from 2006 to 2016. This dataset corresponds to the country Finland of Northern Europe.           To analyze this dataset first of all we have to import all necessary libraries like numpy, pandas, matplotlib, seaborn etc. like following way- import numpy as np import pandas as pd import seaborn as sns import matplotlib . pyplot as plt % matplotlib inline and after it we have to download dataset for analysis from kaggle and load it to the notebook as follows- data = pd . read_csv ( "WeatherH