Word Cloud
HR People Terms
Human resources and workplace vocabulary
Output
Python
import matplotlib.pyplot as plt
from wordcloud import WordCloud
text = """Human Resources HR Recruitment Hiring Onboarding Talent
Interview Resume CV Application Candidate Screening Background
Employee Employer Workplace Culture Diversity Inclusion Equity
Compensation Salary Benefits Health Insurance PTO Vacation 401k
Performance Review Feedback Goals KPI OKR Development Training
Remote Work Hybrid Office Collaboration Team Communication Slack
Engagement Retention Turnover Exit Interview Offboarding Alumni"""
def coral_pink(word, font_size, position, orientation, random_state=None, **kwargs):
colors = ['#be185d', '#db2777', '#ec4899', '#f472b6', '#9d174d']
return colors[hash(word) % len(colors)]
wordcloud = WordCloud(
width=1000, height=600,
background_color='#ffffff',
color_func=coral_pink,
max_words=70,
max_font_size=100,
min_font_size=12,
relative_scaling=0.55
).generate(text)
fig, ax = plt.subplots(figsize=(10, 6), facecolor='#ffffff')
ax.imshow(wordcloud, interpolation='bilinear')
ax.axis('off')
ax.set_title('HR & People', color='#1f2937', fontsize=16, fontweight='bold', pad=10)
plt.tight_layout(pad=1)
plt.show()
Library
Matplotlib
Category
Text Visualization
More Word Cloud examples
☕