Tutorial of Scatter Plot in Base R Language

Introduction In this article, we will understand how to create Scatter Plot in Base R language. R is very popular for providing rich visualization options out of the box. Firs, we will understand the syntax of plot() and then see how to use it for creating scatterplots. Syntax of Scatter Plot plot() function in R The basic syntax for scatterplot plot() function is shown below with commonly used parameters.    

Read more

Tutorial of Violin Plot in Base R Language with Examples

Introduction In this tutorial, we will see how to create Violin Plot in Base R language which is very popular for providing packages for rich visualization. First, we will understand the syntax of vioplot() and then see how to use it for creating violin plot. Syntax of Violin Plot vioplot() function in R The basic syntax for vioplot() function is shown below with a few commonly used arguments. The detailed syntax can be found here. vioplot(x,horizontal,col,rectCol,lineCol,colMed,border) x – It denotes […]

Read more

Tutorial of Line Plot in Base R Language with Examples

Introduction A line plot is a graph that connects multiple data points by making line segments between them. These points are ordered in one of their coordinate (usually the x-coordinate) values and are useful to investigate trends in our data set. In this tutorial, we are going to see how to create a line plot in R language with plot() function along with its syntax and various examples. Syntax plot() function for    

Read more

What’s That Beer Style? Ask a Neighbor, or Two

Beer is delicious but it is not one thing. If you disagree with the former part of the previous sentence please keep the latter in mind[1]. Think of sports, for instance. Many would agree with the blanket statement “sports are fun” but depending on what you have in mind two people can easily have opposite reactions to being presented the opportunity to play ping-pong. Sports are not one thing, music is not one thing, and neither is beer. Presented with […]

Read more