-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #448 from ellow0rld/masters
Chemicals in Cosmetics Analysis
- Loading branch information
Showing
12 changed files
with
2,955 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## DATASET | ||
|
||
Dataset can be found at below link. | ||
|
||
https://www.kaggle.com/datasets/willianoliveiragibin/chemicals-in-cosmetics |
Binary file added
BIN
+17.6 KB
Chemicals in cosmetics analysis/Images/brand_names_with_highest_no_of_products.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+46.9 KB
Chemicals in cosmetics analysis/Images/categories_with_5_or_more_chemicals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+56.2 KB
...osmetics analysis/Images/cosmetic_brands_with_3_or_more_avg_no_of_chemicals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.3 KB
...etics analysis/Images/cosmetic_companies_with_3_or_more_avg_no_of_chemicals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+22.9 KB
...osmetics analysis/Images/cosmetic_companies_with_highest_number_of_products.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+58.9 KB
...als in cosmetics analysis/Images/cosmetic_products_with_5_or_more_chemicals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,912 changes: 2,912 additions & 0 deletions
2,912
Chemicals in cosmetics analysis/Model/Chemicals_in_Cosmetics_Analysis.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Goals | ||
Analysis of chemicals in cosmetics. | ||
|
||
# Dataset | ||
https://www.kaggle.com/datasets/willianoliveiragibin/chemicals-in-cosmetics | ||
|
||
# Work Done | ||
* Cleaned the dataset. | ||
* Analyzed the data and found insights and plotted graphs accordingly etc. | ||
|
||
# Libraries needed | ||
* Numpy | ||
* Pandas | ||
* Matplotlib | ||
* missingno | ||
|
||
# Plots | ||
![cosmetic_products_with_5_or_more_chemicals](https://github.com/ellow0rld/ML-Crate/assets/116413038/a1bc43ce-527d-44cb-bd46-5f880bf18651) | ||
![categories_with_5_or_more_chemicals](https://github.com/ellow0rld/ML-Crate/assets/116413038/38b0cb15-b334-44d2-bb39-3734e4582925) | ||
![commonly_used_chemical](https://github.com/ellow0rld/ML-Crate/assets/116413038/e31acb90-d921-49a8-9f52-ffaf213d91e5) | ||
![cosmetic_brands_with_3_or_more_avg_no_of_chemicals](https://github.com/ellow0rld/ML-Crate/assets/116413038/ee03496b-1abb-469c-8ff1-38ed7c2a26d3) | ||
![cosmetic_companies_with_3_or_more_avg_no_of_chemicals](https://github.com/ellow0rld/ML-Crate/assets/116413038/5965b2f3-da35-46c1-a039-86299749d953) | ||
![brand_names_with_highest_no_of_products](https://github.com/ellow0rld/ML-Crate/assets/116413038/c248766a-ad3d-45b0-98db-115db9142b7f) | ||
![cosmetic_companies_with_highest_number_of_products](https://github.com/ellow0rld/ML-Crate/assets/116413038/7e84a183-3634-4bf3-8772-3b10ce2ba420) | ||
|
||
# Conclusion | ||
- Most of the famous cosmetic companies use toxic chemicals in their products. It's best to check the ingredients before purchasing these items. | ||
- Makeup products have the highest amount of chemicals compared to other products. Among them, hair and skin care products have the highest concentrations. | ||
- Titanium dioxide is used in the majority of the products. | ||
|
||
# Contributed by | ||
Madhu Shree Aravindan | ||
|
||
Github - https://github.com/ellow0rld |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
numpy==1.21.4 | ||
pandas==1.3.5 | ||
matplotlib==3.5.1 | ||
missingno |