document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. plt.figure(1, figsize=(15,6))
  2. n=0
  3. for x in [\'actual_delivery_time\',\'payment_sequential\',\'payment_installments\',\'payment_value\']:
  4.   n += 1
  5.   plt.subplot(1,4,n)
  6.   plt.subplots_adjust(hspace = 0.5, wspace = 0.5)
  7.   sns.distplot(df[x], bins = 20)
  8.   plt.title(\'Distplot of {}\'.format(x))
  9. plt.show()
');