Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm doing a Kaggle project and I'm trying to compare the difference of degree between Data Analyst and Data Scientist. I created 2 dataframes one dx_data_analyst and an other dx_data_scientist.

My solution was to use an histogram to understand the difference of degree between Data Analyst and Data Scientist but I don't know of could I get my result in proportion.

Example of result expected (master degree: data analyst 50%, data scientist 53%) on the graph, I enclosed the first graph I get but it is not exactly what I want.

import numpy as np
import matplotlib.pyplot as plt
plt.style.use('seaborn-deep')

x = dx_data_scientist['highest_degree']
y = dx_data_analyst['highest_degree']

plt.hist([x, y], label=['data_scientist', 'data_analyst'])
plt.legend(loc='upper right')
plt.show()

My plot enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...