Skip to content

Latest commit

 

History

History
60 lines (52 loc) · 1.6 KB

README.md

File metadata and controls

60 lines (52 loc) · 1.6 KB

Indian Agriculture Data Analytics

This project is a React application that performs analytics on Indian Agriculture data. It displays aggregated crop data in responsive tables using Mantine components.

Project Structure

├── public
│   ├── index.html
│   └── ...
├── src
│   ├── components
│   │   ├── CropProductionTable.tsx
│   │   ├── CropStatisticsTable.tsx
│   │   └── ...
│   ├── data
│   │   └── agricultureData.json
│   ├── hooks
│   │   └── useAgricultureData.ts
│   ├── pages
│   │   └── HomePage.tsx
│   ├── styles
│   │   └── TableStyles.css
│   ├── App.tsx
│   ├── index.tsx
│   └── ...
├── .gitignore
├── package.json
├── README.md
└── yarn.lock

Features

Displays the crop with maximum and minimum production for each year from 1950 to 2020.
Shows average yield and average cultivation area for each crop between 1950 and 2020.
Responsive tables using Mantine components for enhanced UI/UX.

Getting Started

Prerequisites

Node.js (>=14.x)
Yarn (>=1.x)

Installation

Clone the repository:

bash
Copy
git clone https://github.com/your-username/indian-agriculture-data-analytics.git
cd indian-agriculture-data-analytics

yarn install

yarn start

Screenshot (170) Screenshot (169)