-
Notifications
You must be signed in to change notification settings - Fork 0
/
_🏠_main.py
36 lines (28 loc) · 1.32 KB
/
_🏠_main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import streamlit as st
from streamlit_extras.mention import mention
st.set_page_config(
page_title="Fuel consumption",
page_icon="🏠",
layout="centered",
initial_sidebar_state="auto",
)
st.title('⛽︎ Fuel consumption')
mention(
label="Mathis Derenne",
icon="github",
url="https://github.com/mathisdrn",
)
st.header('Project description')
st.markdown("""
This project aims at providing a deeper understanding of how caractheristic of a car impact fuel consumption.
### Components :
- **dashboard** : display main metrics and charts
- **vehicle finder** : find a car based on its characteristics
- **your car consumption** : estimate your car's emissions and fuel consumption based on its characteristics
### About the data :
**Source** : https://www.kaggle.com/datasets/ahmettyilmazz/fuel-consumption
**Description** :
> Datasets provide model-specific fuel consumption ratings and estimated carbon dioxide emissions for new light-duty vehicles for retail sale in Canada 🇨🇦.
>
> To help you compare vehicles from different model years, the fuel consumption ratings for 2000 to 2022 vehicles have been adjusted to reflect the improved testing that is more representative of everyday driving. Note that these are approximate values that were generated from the original ratings, not from vehicle testing.
""")