what is the mechanical difference between plt.hist(some_data) vs. plt.hist(data = some_data) ?
when I input plt.hist(data = some_data) error is thrown say x is missing value when I put plt.hist(data = some_data, x = some_value_in_some_data) another error is thrown: len() of unsized object
the expression: plt.hist(some_data) has worked for me so far, but I would like to know what is changed by putting data = some_data as opposed to mere some_data.