-
-
Save aletelecom/ce1fd67b1daca2bd048d5652b9f9adc3 to your computer and use it in GitHub Desktop.
Importing
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
# 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