Skip to content

Commit

Permalink
Add Insurance_Cost_Predictor
Browse files Browse the repository at this point in the history
  • Loading branch information
yashasvini121 authored Oct 26, 2024
2 parents a6cf6f8 + 3a9e7b4 commit 0b0fe7e
Show file tree
Hide file tree
Showing 9 changed files with 2,538 additions and 1 deletion.
2 changes: 2 additions & 0 deletions App.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,4 +220,6 @@
st.markdown("## Get Started Today!")
st.markdown("Explore our calculators and take control of your predictive analytics journey!")


st.write("Developed with ❤️ by Yashasvini Sharma | [Github](https://www.github.com/yashasvini121) | [LinkedIn](https://www.linkedin.com/in/yashasvini121/)")

44 changes: 44 additions & 0 deletions form_configs/insurance_cost_predictor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"Insurance Cost Form": {
"Age": {
"type": "slider",
"min_value": 0,
"default_value": 30,
"step": 1,
"field_name": "age"
},
"Sex": {
"type": "dropdown",
"options": ["Male", "Female"],
"default_value": "Male",
"field_name": "sex"
},
"BMI": {
"type": "number",
"min_value": 0.0,
"default_value": 25.0,
"step": 0.1,
"field_name": "bmi"
},
"Children": {
"type": "number",
"min_value": 0,
"default_value": 0,
"step": 1,
"field_name": "children"
},
"Smoker": {
"type": "dropdown",
"options": ["Yes", "No"],
"default_value": "No",
"field_name": "smoker"
},
"Region": {
"type": "dropdown",
"options": ["Southeast", "Southwest", "Northeast", "Northwest"],
"default_value": "Southeast",
"field_name": "region"
}
}
}

Loading

0 comments on commit 0b0fe7e

Please sign in to comment.