Last active
March 21, 2022 17:10
-
-
Save kshirsagarsiddharth/e8a984fa97aa39805d4cb971ed1c5eb4 to your computer and use it in GitHub Desktop.
db1.py
This file contains hidden or 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
import plotly.express as px | |
import pandas as pd | |
from dash import Dash, dcc, html, Input, Output, State | |
from jupyter_dash import JupyterDash | |
import dash_bootstrap_components as dbc | |
import numpy as np | |
df = pd.read_csv('car_price_data.csv').drop('Unnamed: 0', axis = 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment