.ipynb
pip install notebook
python3 -m pip install notebook
pip install jupyterlab
import seaborn as sns
Make sure you import pandas and read the data in:
pandas
import pandas as pd data_frame = pd.read_csv("data/US houuse price of 10 states.csv")
sns.scatterplot(data = data_frame, x = "bed_numeric", y = "price_numeric")