qmb 3302 Heatmaps can be used to quickly understand correlated variables in a dataset - true how do you insert comments into a python code cell? - #comment Imagine we have a dataframe, df, what would the following code do? df.loc[ ] . - looks for labels in the list below, what position is the first number (the number 8) in? my_list[8, 6, 3, 5, 6] - none/error in the list below, what position is the number 2 in? my_list = [9, 2, 1, 3, 4] - 1 Matplotlib is built on top of seaborn (uses seaborn code) - false The code below produces a histogram. What portion of the code controls the bins and the bin size in the output? age = [69, 21, 31, 80, 37, 53, 20, 27, 38, 43, 26, 46, 62, 69, 34, 47, 59]binsep = [20, 30, 40, 50, 60, 70, 80]plt.hist(age, bins=binsep, edgecolor='white') - bins=binsep What is the purpose of the code below? %matplotlib inline - make the plots show up inline what type of data structure is the below num_set = (1, 2, 3, 4, 5) - tuple