Show the code
import pandas as pd
import numpy as np
import plotly.express as px
import seaborn as sns
from sklearn import tree
import matplotlib.pyplot as plt # for graphs}
from lets_plot import *
LetsPlot.setup_html()
Course DS 250
Gabriel Guerrero
Shorten the column names and clean them up for easier use with pandas. Provide a table or list that exemplifies how you fixed the names.
#| label: project-data #| code-summary: Load the data #| include: false
#samplE data random= pd.DataFrame(np.random.randint(0, 100, size=(100, 4)), columns=list(‘ABCD’))
random.head()