Skip to contents

This dataset, rainfall_tbl_df, is a tibble containing historical monthly rainfall data for subdivisions in India from 1901 to 2021. It includes rainfall measurements for June, July, August, September, and the total for June to September, along with the year and subdivision name. The dataset preserves the original structure from its source on Kaggle.

Usage

data(rainfall_tbl_df)

Format

A tibble with 4,332 observations and 7 variables:

subdivision

Name of the subdivision (character)

YEAR

Year of observation (numeric)

JUN

Rainfall in June (numeric)

JUL

Rainfall in July (numeric)

AUG

Rainfall in August (numeric)

SEP

Rainfall in September (numeric)

JUN-SEP

Total rainfall from June to September (numeric)

Details

The dataset name has been kept as 'rainfall_tbl_df' to maintain consistency with the naming conventions in the IndiAPIs package. The suffix 'tbl_df' indicates that this is a tibble data frame. The original content has not been modified in any way.