Week 11

Mu Yang Liu
1 min readJun 12, 2017

--

Line chat is the graph I used the most in my notebook because I can see the trend in direct way via line chat. At first I just simply use “attrition_data[[“ ”, “ ”]].plot( ) — create a list to compare two or more data. Then I found a better way to do the graph with more information:

attrition_data.plot(x = “reference_year”, y=[“data 1”, “data 2”]) it help me label the number of years other than just 1,2,3….

plt.xlabel and plt.ylabel can create title on two axis

Some regular pattern I found such as a female and male does not have too much difference on their attrition rate and they are very close to the overall attrition rate.

--

--