摘要: my_name = 'Zed A. Shaw'my_age = 35 # not a liemy_height = 74 # inchesmy_weight = 180 # lbsmy_eyes = 'Blue'my_teeth = 'White'my_hair = 'Brown'print "Le... 阅读全文
posted @ 2014-10-21 21:50 林中细雨 阅读(180) 评论(0) 推荐(0) 编辑
摘要: As a first guess,you can start with Scott’s rule for the bin widthw = 3.5σ/ 3√n,where σ is the standarddeviation for the entire data set and n is the ... 阅读全文
posted @ 2014-10-21 15:50 林中细雨 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 点图,抖动图。http://jingyan.baidu.com/article/59703552eaf0fb8fc1074049.html横向或纵向加随机变量。其实也可以用气泡图。上为盗图。 阅读全文
posted @ 2014-10-21 15:23 林中细雨 阅读(279) 评论(0) 推荐(0) 编辑
摘要: cars = 100space_in_a_car = 4.0drivers = 30passengers = 90cars_not_driven = cars - driverscars_driven = driverscarpool_capacity = cars_driven * space_i... 阅读全文
posted @ 2014-10-21 09:17 林中细雨 阅读(189) 评论(0) 推荐(0) 编辑
摘要: print "I will now count my chickens:"print "Hens", 25 + 30 / 6print "Roosters", 100 - 25 * 3 % 4print "Now I will count the eggs:"print 3 + 2 + 1 - 5 ... 阅读全文
posted @ 2014-10-21 09:11 林中细雨 阅读(135) 评论(0) 推荐(0) 编辑
摘要: # A comment, this is so you can read your program later.# Anything after the # is ignored by python.print "I could have code like this." # and the com... 阅读全文
posted @ 2014-10-21 09:06 林中细雨 阅读(145) 评论(0) 推荐(0) 编辑