When we build our Graph sometimes it is useful to explain a variation and correlate the variation with some events that occurred. Let's see one example where we use arrows to pinpoint specific events and root cause of the variation👍
When we build our Graph sometimes it is useful to explain a variation and correlate the variation with some events that occurred. Let's see one example where we use arrows to pinpoint specific events and root cause of the variation👍
Comments are really useful to improve the readability of your Graph. Let's see how to add few comments to our Pie Chart
Comments are really useful to improve the readability of your Graph. Let's see how to add few comments to our Pie Chart
An example of a pie chart using Python
An example of a pie chart using Python
List comprehensions are a concise and readable way to create lists. This is a great tool to use to set the X Ticks and Y Ticks of the Chart.
Here an example for the Stacked Area Chart we created previously 👍
List comprehensions are a concise and readable way to create lists. This is a great tool to use to set the X Ticks and Y Ticks of the Chart.
Here an example for the Stacked Area Chart we created previously 👍
To make a Stacked Area Chart you need to use StackPlot
Here a small example.😀
To make a Stacked Area Chart you need to use StackPlot
Here a small example.😀
In this case you can use to_numpy() method to convert the series or dataframe slice into a numpy array. Then you can stack the column that you need as shown below.👍
In this case you can use to_numpy() method to convert the series or dataframe slice into a numpy array. Then you can stack the column that you need as shown below.👍
In this post we take a look at how to refine the scale of the graph using "ylim" on the plt object.
Then we build a small array with the values of ticks to pass to the graph to set the ticks on vertical axis
In this post we take a look at how to refine the scale of the graph using "ylim" on the plt object.
Then we build a small array with the values of ticks to pass to the graph to set the ticks on vertical axis
Use "fontdict" to format size,style,weight and color.
Add a "bbox" to format further title's facecolor, the boxstyle as round with pad equal to 0.2 and edgecolor.😉
Use "fontdict" to format size,style,weight and color.
Add a "bbox" to format further title's facecolor, the boxstyle as round with pad equal to 0.2 and edgecolor.😉
Here a simple bar chat:
First let's create a dataframe in Excel called "t"
Then we can generate a bar chart with the code👍
Here a simple bar chat:
First let's create a dataframe in Excel called "t"
Then we can generate a bar chart with the code👍