R: Data Visualization – Creating Pie Chart, Bar Chart & Line Graph

This article shows how to create Pie chart, Bar chart & Line graph using R Programming Language. Set Working Directory Set a directory where you want to save the image of pie chart, bar chart & line graph. > print (getwd()) # get current working directory [1] "/home/mukesh" > setwd('/home/mukesh/Documents/training') # set working directory > … Read more

Python: Graph plotting with Matplotlib (Bar Chart)

This article deals with plotting line graphs with Matplotlib (a Python’s library). Below is the data which we will use to plot the bar chart. The data is saved in a CSV file named result3-blog.csv. As seen above, the CSV file contains result in terms of F1 measure which is an accuracy measure generally used … Read more