Posts

Create Horizontal Bar Graph of skills for your CV using Python.

Image
HorizontalGraph Applying for a job in IT is getting harder than used to be. Every field requires a portfolio of your work if you don't have outstanding work experience or if you don't have a reference. The lack of proof that I am capable to do some coding and analysis with Python, I thought to transfer that knowledge while I am building my CV. So, below you will find a simple graph of my skills. In [23]: import matplotlib.pyplot as plt #create two lists containing the values we want to plot Tool = [ 'HTML, CSS' , 'Tableau' , 'Excel' , 'Rstudio' , 'Python' ] Skill = [ 4 , 3 , 9 , 8 , 7 ] #plot size fig , ax = plt . subplots ( figsize = ( 5 , 2 )) #customisation of the horizontal bars plt . barh ( Tool , Skill , color = [ 'chartreuse' , 'darkblue' , 'green' , 'deepskyblue' , 'orangered' ], heig...