Skip to content

Instantly share code, notes, and snippets.

@aletelecom
Created July 19, 2022 00:47
Show Gist options
  • Save aletelecom/ce1fd67b1daca2bd048d5652b9f9adc3 to your computer and use it in GitHub Desktop.
Save aletelecom/ce1fd67b1daca2bd048d5652b9f9adc3 to your computer and use it in GitHub Desktop.
Importing
# Make all the imports needed
import pandas as pd
from itertools import product
from random import randint, choice
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.DataFrame(data=[[1,2,3,'model_A'],[5,6,7,'model_B']], columns=[['slot', 'port', 'client_qty', 'model']])
df
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment