Recently Published
Learning activity-2
R provides visualization tools like ggplot() which is the base function for creating all plots and mapping variables using aes() for x and y axes.
It includes plot types like geom_bar(), geom_histogram(), geom_boxplot(), geom_line(), and geom_point() to visualize different data patterns.
Customization commands like labs(), ggtitle(), theme(), color, fill, and facet_wrap() help improve plot appearance and comparison of groups.
Other useful visuals include geom_density(), geom_violin(), geom_smooth(), geom_jitter(), and base R plots like plot(), hist(), and boxplot() for quick analysis.
Learning Activity-1(EDA)
This analysis utilizes the Amazon Fine Food Reviews dataset, consisting of over 500,000 user reviews. The primary objective of this stage is to move from "Raw Data" to "Analysis-Ready Data" by performing a series of 50 structured commands in R.
program 1
Develop an r programming to quickly explore a given dataset<including categorical analysis using the group_by command and visualize the findings using ggplot2 features
program 2
Write a r programming to create a scatter plot, incorporating categorical analysis through color -coded data points representing different groups using ggplot2.