Baselight

Simple Weather Forecast

Weather forecast collected over 14 days.

@kaggle.dheemanthbhat_simple_weather_forecast

Loading...
Loading...

About this Dataset

Simple Weather Forecast

  1. Dataset contains five attributes to describe the forecast:
    • Outlook: A forecast or prediction about how the weather will develop over the day.
    • Temperature: Measure of hotness or coldness.
    • Humidity: Measure of water vapor in the air.
    • Wind: Presence or absence of wind.
    • Play: Is it ideal to play outdoors.
  2. The values of the four attributes are qualitative (also known as categorical).
  3. Dataset was gathered over 14 different days.

First four attributes acts as features and take on the values shown below:

  1. Outlook ∈ [Sunny, Overcast, Rainy]
  2. Temperature ∈ [Hot, Mild, Cool]
  3. Humidity ∈ [High, Normal]
  4. Windy ∈ [Weak, Strong]

Attribute Play is the class-label and takes the values yes or no.

  1. Play ∈ [Yes, No]

Tables

Weather Forecast

@kaggle.dheemanthbhat_simple_weather_forecast.weather_forecast
  • 3.7 KB
  • 14 rows
  • 5 columns
Loading...

CREATE TABLE weather_forecast (
  "outlook" VARCHAR,
  "temperature" VARCHAR,
  "humidity" VARCHAR,
  "windy" VARCHAR,
  "play" VARCHAR
);

Share link

Anyone who has the link will be able to view this.