Data Visualization#
During the data analysis process, data visualization is one of the most important tasks. Making an effective informative visualization, may be useful in the exploratory process, but it can also be the end goal!
Python’s most popular plotting library is Matplotlib
, and it will be compared with Kotlin’s Lets-Plot
library, which is largely based on the API that ggplot2
(R open source plotting library) offers.
The approach of ggplot and Lets-Plot is to use a series of layers for building the figure, whereas Matplotlib uses an object oriented approach, where all the customization is made on the figure itself.