代码改变世界

Python Tutorial: Basic Data Wrangling and Manipulation

2017-12-12 14:34 by nuswgg, 184 阅读, 0 推荐, 收藏, 编辑
摘要:import numpy as np Create a new variable in a data set as a function of existing variables in the data set. # Notice here how you can create the BMI c 阅读全文

Python Tutorial: Basic graphing and plotting functions

2017-12-12 14:13 by nuswgg, 265 阅读, 0 推荐, 收藏, 编辑
摘要:Visualize a single continuous variable by producing a histogram. # Notice the labeling of the axesplt.hist(student["Weight"], bins=[40,60,80,100,120,1 阅读全文