首页 > 代码库 > Data Cleaning 5
Data Cleaning 5
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。