This file contains 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 numpy as np | |
import matplotlib.pyplot as plt | |
import math | |
import array | |
import random | |
import pickle | |
import pandas as pd | |
from deap import base | |
from deap import benchmarks | |
from deap import creator |
This file contains 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 pandas as pd | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
import getpass | |
UserName = getpass.getuser() | |
if UserName == 'cvdronke': | |
path_to_file = 'C:/Users/' + UserName | |
else: | |
path_to_file = 'D:' |