码迷,mamicode.com
首页 > 其他好文 > 详细

Data Cleaning 5

时间:2016-10-27 09:49:25      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:function   com   each   use   change   group   ica   color   bin   

1. Histogram vs. Bar chart

   With bar charts, each column represents a group defined by a categorical variable; and with histograms, each column represents a group defined by a quantitative variable.Which means we can change the order of categories in bar chart. But we can not swap the quantitative variable in histogram.

2.We can use map() combined with dictionary/Series to convert our target data to the data we want to.

  series = ["Yes", "No", NaN, "Yes"] #Origonal data set

  yes_no = {"Yes": True,"No": False} # The dictionary we would like to convert all the Yes to True, and all the No to False

  series = series.map(yes_no) # use the map function

3.

Data Cleaning 5

标签:function   com   each   use   change   group   ica   color   bin   

原文地址:http://www.cnblogs.com/kingoscar/p/6002610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!