{"id":26811575,"url":"https://github.com/rahulrmcoder/us-honey-production-case-study","last_synced_at":"2025-07-23T12:31:59.914Z","repository":{"id":283037700,"uuid":"950475716","full_name":"RahulRmCoder/US-Honey-Production-Case-Study","owner":"RahulRmCoder","description":"This project analyzes honey production data across the United States from 1995 to 2021. The dataset contains information about bee colonies, honey production, pricing, and economic value across all states.","archived":false,"fork":false,"pushed_at":"2025-03-18T08:34:36.000Z","size":602,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T01:39:08.835Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RahulRmCoder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-18T08:14:17.000Z","updated_at":"2025-03-18T08:34:39.000Z","dependencies_parsed_at":"2025-03-19T00:30:30.780Z","dependency_job_id":null,"html_url":"https://github.com/RahulRmCoder/US-Honey-Production-Case-Study","commit_stats":null,"previous_names":["rahulrmcoder/us-honey-production-case-study"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RahulRmCoder/US-Honey-Production-Case-Study","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RahulRmCoder%2FUS-Honey-Production-Case-Study","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RahulRmCoder%2FUS-Honey-Production-Case-Study/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RahulRmCoder%2FUS-Honey-Production-Case-Study/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RahulRmCoder%2FUS-Honey-Production-Case-Study/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RahulRmCoder","download_url":"https://codeload.github.com/RahulRmCoder/US-Honey-Production-Case-Study/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RahulRmCoder%2FUS-Honey-Production-Case-Study/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266679310,"owners_count":23967593,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-30T01:39:10.620Z","updated_at":"2025-07-23T12:31:59.873Z","avatar_url":"https://github.com/RahulRmCoder.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# US-Honey-Production-Case-Study\n\n## Project Overview\n\nThis project analyzes honey production data across the United States from 1995 to 2021. The dataset contains information about bee colonies, honey production, pricing, and economic value across all states.\n\n## Dataset Description\n\nThe dataset `US_honey_dataset.csv` contains 1,115 rows and 9 columns:\n\n- **Unnamed: 0**: Index column (not relevant for analysis)\n- **state**: US state name\n- **colonies_number**: Number of honey bee colonies\n- **yield_per_colony**: Average honey produced per colony (in pounds)\n- **production**: Total honey production in pounds\n- **stocks**: Amount of honey held in stock (in pounds)\n- **average_price**: Average price per pound (in cents/dollars)\n- **value_of_production**: Total monetary value of honey produced (in dollars)\n- **year**: Data collection year (1995-2021)\n\n## Project Structure\n\nThe analysis is organized into the following sections:\n\n1. Importing Libraries\n2. Importing Dataset\n3. Exploratory Data Analysis (EDA)\n4. States vs Production Analysis\n5. Analysis of Average Price of Honey with respect to Year\n6. Analysis of Production with respect to Year\n7. Analyzing Year 2000\n8. Inferences\n\n## Notebook Sections\n\n### 1. Importing Libraries\n\nThis section imports all necessary Python libraries for data analysis and visualization:\n- pandas for data manipulation\n- numpy for numerical operations\n- matplotlib and seaborn for visualization\n- plotly for interactive visualizations\n\n### 2. Importing Dataset\n\nThis section loads the US honey dataset and displays basic information:\n- Initial view of the data\n- Dataset shape and structure\n- Summary statistics\n\n### 3. Exploratory Data Analysis (EDA)\n\nThis section explores the data distribution and relationships between variables:\n- Distribution of colonies across states\n- Distribution of production values\n- Correlation between variables\n- Yearly trends for key metrics\n\n### 4. States vs Production Analysis\n\n![States vs Production Analysis](screenshots/states_production.png)\n\nThis section analyzes honey production across different states:\n- Top honey-producing states over the entire period\n- Visualization of production by state\n- Analysis confirming North Dakota (513,742,000 pounds), California (423,876,000 pounds), South Dakota (355,726,000 pounds), Florida (280,934,000 pounds), and Montana (197,173,000 pounds) as the top 5 producers\n\n### 5. Analysis of Average Price of Honey with respect to Year\n\n![Price Analysis](screenshots/price_analysis.png)\n\nThis section examines honey price trends over time:\n- Visualization of average price changes from 1995-2021\n- Price increase from 1995 to 2015\n- Price trends post-2016, noting the unit change in the dataset\n- Year-to-year price volatility analysis\n\n### 6. Analysis of Production with respect to Year\n\n![Production Analysis](screenshots/production_analysis.png)\n\nThis section investigates honey production trends over time:\n- Visualization of production changes from 1995-2021\n- Analysis of the significant production drop after 2010\n- Comparison of pre-2010 and post-2010 production levels\n\n### 7. Analyzing Year 2000\n\nThis section focuses specifically on honey production in the year 2000:\n- Comparison of California and North Dakota in 2000\n- Analysis confirming California had high colony numbers (440,000) in 2000\n![Year 2000 Analysis](screenshots/1year_2000.png)\n- Comparison showing North Dakota had higher production (33,350,000 pounds) than California (30,800,000 pounds) despite having fewer colonies. \u003cbr\u003e\n![Year 2000 Analysis](screenshots/year_2000.png)\n\n### 8. Inferences\n\nKey findings from the analysis:\n- California had the highest number of colonies in 2000 (440,000)\n- North Dakota produced more honey than California in 2000 despite having fewer colonies\n- Average price of honey showed an upward trend from 1995 to 2017, with a unit change in recording after 2017\n- Honey production significantly dropped after 2010\n- The top 5 honey-producing states over the entire period are:\n  1. North Dakota: 513,742,000 pounds\n  2. California: 423,876,000 pounds\n  3. South Dakota: 355,726,000 pounds\n  4. Florida: 280,934,000 pounds\n  5. Montana: 197,173,000 pounds\n\n## Running the Project\n\nTo run this analysis:\n\n1. Ensure you have Jupyter Notebook or JupyterLab installed\n2. Install required libraries: `pip install pandas numpy matplotlib seaborn plotly`\n3. Download the dataset `US_honey_dataset.csv`\n4. Open the notebook and run each cell sequentially\n\n## Conclusion\n\nThis analysis provides insights into honey production trends across the United States, highlighting regional production leaders, production trends over time, and pricing patterns. The significant drop in honey production after 2010 warrants further investigation into potential causes such as colony collapse disorder, changing agricultural practices, or climate factors.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frahulrmcoder%2Fus-honey-production-case-study","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frahulrmcoder%2Fus-honey-production-case-study","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frahulrmcoder%2Fus-honey-production-case-study/lists"}