Chart and graphs in R programming language CHANDAN KUMAR
This slide contains basics of charts and graphs in R programming language. I also focused on practical knowledge so I tried to give maximum example to understand the concepts.
The document discusses exploratory data analysis (EDA) techniques in R. It explains that EDA involves analyzing data using visual methods to discover patterns. Common EDA techniques in R include descriptive statistics, histograms, bar plots, scatter plots, and line graphs. Tools like R and Python are useful for EDA due to their data visualization capabilities. The document also provides code examples for creating various graphs in R.
Week-3 – System RSupplemental material1Recap •.docxhelzerpatrina
Week-3 – System R
Supplemental material
1
Recap
• R - workhorse data structures
• Data frame
• List
• Matrix / Array
• Vector
• System-R – Input and output
• read() function
• read.table and read.csv
• scan() function
• typeof() function
• Setwd() function
• print()
• Factor variables
• Used in category analysis and statistical modelling
• Contains predefined set value called levels
• Descriptive statistics
• ls() – list of named objects
• str() – structure of the data and not the data itself
• summary() – provides a summary of data
• Plot() – Simple plot
2
Descriptive statistics - continued
• Summary of commands with single-value result. These commands will work on variables
containing numeric value.
• max() ---- It shows the maximum value in the vector
• min() ----- It shows the minimum value in the vector
• sum() ----- It shows the sum of all the vector elements.
• mean() ---- It shows the arithmetic mean for the entire vector
• median() – It shows the median value of the vector
• sd() – It shows the standard deviation
• var() – It show the variance
3
Descriptive statistics - single value results -
example
temp is the name of the vector
containing all numeric values
4
• log(dataset) – Shows log value for each
element.
• summary(dataset) –shows the summary
of values
• quantile() - Shows the quantiles by
default—the 0%, 25%, 50%, 75%, and
100% quantiles. It is possible to select
other quantiles also.
Descriptive statistics - multiple value results -
example
5
Descriptive Statistics in R for Data Frames
• Max(frame) – Returns the largest value in the entire data frame.
• Min(frame) – Returns the smallest value in the entire data frame.
• Sum(frame) – Returns the sum of the entire data frame.
• Fivenum(frame) – Returns the Tukey summary values for the entire
data frame.
• Length(frame)- Returns the number of columns in the data frame.
• Summary(frame) – Returns the summary for each column.
6
Descriptive Statistics in R for Data Frames -
Example
7
Descriptive Statistics in R for Data Frames –
RowMeans example
8
Descriptive Statistics in R for Data Frames –
ColMeans example
9
Graphical analysis - simple linear regression model
in R
• Logistic regression is implemented to understand if the dependent
variable is a linear function of the independent variable.
• Logistic regression is used for fitting the regression curve.
• Pre-requisite for implementing linear regression:
• Dependent variable should conform to normal distribution
• Cars dataset that is part of the R-Studio will be used as an example to
explain linear regression model.
10
Creating a simple linear model
• cars is a dataset preloaded into
System-R studio.
• head() function prints the first
few rows of the list/df
• cars dataset contains two major
columns
• X = speed (cars$speed)
• Y = dist (cars$dist)
• data() function is used to list all
the active datasets in the
environment.
• ...
This document provides an introduction to using R and RStudio. It discusses installing R and RStudio, the four windows in RStudio (source editor, console, environment/history, and plots/files), and basic commands and functions for running code, saving scripts, clearing the screen, commenting lines, and getting help. It also covers creating and manipulating variables and vectors, importing and exporting data, generating basic plots like bar plots, pie charts and histograms, and importing/exporting data.
Background This course is all about data visualization. However, we.docxrosemaryralphs52525
This document provides instructions for a two-part data visualization assignment using RStudio. For part 1, students will analyze a unique dataset by exploring its structure, calculating summary statistics, and visualizing correlations. Screenshots of the analysis must be provided. For part 2, students will create various visualizations of the data, including pie charts, bar plots, histograms, box plots, and scatter plots. Screenshots of the visualizations must be submitted along with an APA style cover page in one Word document.
This document provides an introduction and overview of graphics and plotting in R. It discusses high level and low level plotting functions, interacting with graphics, and modifying plots. It also covers plotting different variable types including dichotomous, categorical, ordinal, and continuous variables. Examples are provided for various plot types including histograms, bar plots, dot plots, boxplots, and more.
pie chart ppt.pdf ppt on pie chart. Veri formalrjyotisingh123
Pie charts represent proportional data by slicing a circle into sections. This document discusses pie charts in R, including how to create them from single numeric vectors or data frames, customize aspects like labels, colors, and direction, and provides examples. Pie charts in R are created using the pie() function, which takes a positive numeric vector as input and can be customized through additional parameters to control visual properties and labels. Examples demonstrate basic pie charts on sample data and how to add customization parameters.
The document discusses various data visualization techniques using Matplotlib in Python. It covers creating basic line plots and scatter plots, customizing plots by adding labels, legends, colors and styles. It also discusses different chart types like pie charts, bar charts, histograms and boxplots. Advanced techniques like showing correlations and time series analysis are also covered. The document provides code examples for each visualization technique.
This document discusses visualizing data in R using various packages and techniques. It introduces ggplot2, a popular package for data visualization that implements Wilkinson's Grammar of Graphics. Ggplot2 can serve as a replacement for base graphics in R and contains defaults for displaying common scales online and in print. The document then covers basic visualizations like histograms, bar charts, box plots, and scatter plots that can be created in R, as well as more advanced visualizations. It also provides examples of code for creating simple time series charts, bar charts, and histograms in R.
- Exploratory data analysis (EDA) is used to summarize and visualize data to understand its key characteristics, variables, and relationships.
- In R, EDA involves descriptive statistics like mean, median, and mode as well as graphical methods like histograms, density plots, and box plots.
- Functions like head(), tail(), summary(), and str() provide information about the structure, dimensions, and descriptive statistics of data frames in R. Additional functions like pairs plots and faceted histograms allow visualizing relationships between variables.
R and Visualization: A match made in HeavenEdureka!
This document outlines an R training course on data visualization and spatial analysis. The course covers basic and advanced graphing techniques in R, including customizing graphs, color palettes, hexbin plots, tabplots, and mosaics. It also demonstrates spatial analysis examples using shapefiles and raster data to visualize and analyze geographic data in R.
An implementation of the grammar of graphics: ggplotHoffman Lab
This document discusses ggplot, an R package for creating graphics using the grammar of graphics. It summarizes that ggplot provides advantages over base R graphics such as no need for manual iteration or specifying aesthetics when creating plots. It also allows graphics to be easily reused, shared, and have extensive control over details. The grammar of graphics approach used by ggplot treats graphics as objects that inherit properties from each other.
R and Visualization: A match made in HeavenEdureka!
This document discusses using R for data visualization and analytics. It covers creating basic and advanced graphs in R, customizing graphical parameters, and learning the basics of grammar of graphics. The document outlines topics that will be covered, including creating pie charts, scatter plots, line graphs, bar graphs, histograms, density plots, box plots, and more advanced graphs. It also discusses customizing graphs by changing colors, titles, axes, and backgrounds. Color palettes and the RColorBrewer package are presented as ways to customize colors in graphs.
Introduction to R Short course Fall 2016Spencer Fox
The document provides instructions for an introductory R session, including downloading materials from a GitHub repository and opening an R project file. It outlines logging in, downloading an R project folder containing intro materials, and opening the project file in RStudio.
Introduction to Data Visualization for Agriculture and Allied Sciences using ...Shubham Shah
Title: Introduction to Data Visualization for Agriculture and Allied Sciences using R-Studio
Description:
This presentation introduces the fundamental concepts and practical applications of data visualization specifically tailored for agriculture and allied sciences. Designed for students, researchers, and professionals, it highlights the role of visual tools in making data-driven insights clearer, quicker, and more impactful.
Through this presentation, you will explore how data visualization enhances the understanding of complex datasets, reveals hidden trends, and supports effective decision-making in research, agronomy, environmental sciences, and allied fields.
The slides provide:
📊 Introduction to Data Visualization — Understand the importance of turning raw data into visual formats such as scatter plots, bar charts, histograms, density plots, and more, for easier interpretation and communication.
💻 Hands-on with R-Studio & ggplot2 — Learn to generate elegant and informative visualizations using R’s powerful ggplot2 package, including:
• Scatter plots
• Box plots
• Histograms
• Density plots
• Multiple plot arrangements with GGally
🔍 Exploring the Grammar of Graphics — Grasp key concepts like aesthetic mapping, geometric objects, statistical transformations, coordinate systems, and faceting for advanced visualization workflows.
💡 Use Case Example:
The presentation demonstrates real-world examples using the famous iris dataset, guiding learners through each step — from simple scatter plots to polished, customized graphs suitable for research publications.
⚖️ Pros & Cons of Data Visualization in R
The slides also discuss the practical advantages of using R for data visualization, such as enhanced clarity, efficiency, and spatial mapping, while also addressing limitations like potential costs and the risk of over-focusing on visual aesthetics over substance.
🎓 Author:
Shubham Shah — M.Sc. Forest Resource Management
For more research and learning resources:
Google Scholar: https://scholar.google.com/citations?user=tR4uhq8AAAAJ&hl=en
Academia.edu: https://skuast-k.academia.edu/ShubhamShah
1. This tutorial covers using the ggplot2 package in R to visualize data. It demonstrates basic functions like qplot() to produce plots with a single line of code.
2. qplot() is used to visualize relationships in the diamonds dataset between variables like price and carat using scatter plots. Additional parameters like color and shape map variables to different plot aspects.
3. Other geoms like smooth, boxplot, and histogram are used to add trends, summarize distributions, and compare groups in the data. Faceting allows splitting plots by variables. Maps from other packages can also be visualized.
TID Chapter 5 Introduction To Charts And GraphWanBK Leo
This document discusses different types of charts and graphs that can be used to represent data visually. It describes common chart types like pie charts, bar charts, line graphs, and scatter plots. The document explains how each type of chart is best used depending on the nature of the data and the insights that need to be conveyed. It also provides guidance on creating charts in Excel and includes an example of a hands-on exercise for practicing generating different chart types from sample data sets.
This document provides an introduction to ggvis visualization in R. It discusses how ggvis allows creating interactive graphics that can be played with locally in RStudio or in a browser. ggvis graphics combine the modeling capabilities of R with the interactivity of web graphics. The document covers key topics such as:
- Creating basic ggvis plots using layers like layer_points() and adding interactivity.
- Adding variables to control visual properties like color, size and shape.
- Using different layer types including histograms, boxplots, and smoothing.
- Combining multiple layers to build richer graphics.
- Controlling plot elements interactively using sliders.
pie chart ppt.pdf ppt on pie chart. Veri formalrjyotisingh123
Pie charts represent proportional data by slicing a circle into sections. This document discusses pie charts in R, including how to create them from single numeric vectors or data frames, customize aspects like labels, colors, and direction, and provides examples. Pie charts in R are created using the pie() function, which takes a positive numeric vector as input and can be customized through additional parameters to control visual properties and labels. Examples demonstrate basic pie charts on sample data and how to add customization parameters.
The document discusses various data visualization techniques using Matplotlib in Python. It covers creating basic line plots and scatter plots, customizing plots by adding labels, legends, colors and styles. It also discusses different chart types like pie charts, bar charts, histograms and boxplots. Advanced techniques like showing correlations and time series analysis are also covered. The document provides code examples for each visualization technique.
This document discusses visualizing data in R using various packages and techniques. It introduces ggplot2, a popular package for data visualization that implements Wilkinson's Grammar of Graphics. Ggplot2 can serve as a replacement for base graphics in R and contains defaults for displaying common scales online and in print. The document then covers basic visualizations like histograms, bar charts, box plots, and scatter plots that can be created in R, as well as more advanced visualizations. It also provides examples of code for creating simple time series charts, bar charts, and histograms in R.
- Exploratory data analysis (EDA) is used to summarize and visualize data to understand its key characteristics, variables, and relationships.
- In R, EDA involves descriptive statistics like mean, median, and mode as well as graphical methods like histograms, density plots, and box plots.
- Functions like head(), tail(), summary(), and str() provide information about the structure, dimensions, and descriptive statistics of data frames in R. Additional functions like pairs plots and faceted histograms allow visualizing relationships between variables.
R and Visualization: A match made in HeavenEdureka!
This document outlines an R training course on data visualization and spatial analysis. The course covers basic and advanced graphing techniques in R, including customizing graphs, color palettes, hexbin plots, tabplots, and mosaics. It also demonstrates spatial analysis examples using shapefiles and raster data to visualize and analyze geographic data in R.
An implementation of the grammar of graphics: ggplotHoffman Lab
This document discusses ggplot, an R package for creating graphics using the grammar of graphics. It summarizes that ggplot provides advantages over base R graphics such as no need for manual iteration or specifying aesthetics when creating plots. It also allows graphics to be easily reused, shared, and have extensive control over details. The grammar of graphics approach used by ggplot treats graphics as objects that inherit properties from each other.
R and Visualization: A match made in HeavenEdureka!
This document discusses using R for data visualization and analytics. It covers creating basic and advanced graphs in R, customizing graphical parameters, and learning the basics of grammar of graphics. The document outlines topics that will be covered, including creating pie charts, scatter plots, line graphs, bar graphs, histograms, density plots, box plots, and more advanced graphs. It also discusses customizing graphs by changing colors, titles, axes, and backgrounds. Color palettes and the RColorBrewer package are presented as ways to customize colors in graphs.
Introduction to R Short course Fall 2016Spencer Fox
The document provides instructions for an introductory R session, including downloading materials from a GitHub repository and opening an R project file. It outlines logging in, downloading an R project folder containing intro materials, and opening the project file in RStudio.
Introduction to Data Visualization for Agriculture and Allied Sciences using ...Shubham Shah
Title: Introduction to Data Visualization for Agriculture and Allied Sciences using R-Studio
Description:
This presentation introduces the fundamental concepts and practical applications of data visualization specifically tailored for agriculture and allied sciences. Designed for students, researchers, and professionals, it highlights the role of visual tools in making data-driven insights clearer, quicker, and more impactful.
Through this presentation, you will explore how data visualization enhances the understanding of complex datasets, reveals hidden trends, and supports effective decision-making in research, agronomy, environmental sciences, and allied fields.
The slides provide:
📊 Introduction to Data Visualization — Understand the importance of turning raw data into visual formats such as scatter plots, bar charts, histograms, density plots, and more, for easier interpretation and communication.
💻 Hands-on with R-Studio & ggplot2 — Learn to generate elegant and informative visualizations using R’s powerful ggplot2 package, including:
• Scatter plots
• Box plots
• Histograms
• Density plots
• Multiple plot arrangements with GGally
🔍 Exploring the Grammar of Graphics — Grasp key concepts like aesthetic mapping, geometric objects, statistical transformations, coordinate systems, and faceting for advanced visualization workflows.
💡 Use Case Example:
The presentation demonstrates real-world examples using the famous iris dataset, guiding learners through each step — from simple scatter plots to polished, customized graphs suitable for research publications.
⚖️ Pros & Cons of Data Visualization in R
The slides also discuss the practical advantages of using R for data visualization, such as enhanced clarity, efficiency, and spatial mapping, while also addressing limitations like potential costs and the risk of over-focusing on visual aesthetics over substance.
🎓 Author:
Shubham Shah — M.Sc. Forest Resource Management
For more research and learning resources:
Google Scholar: https://scholar.google.com/citations?user=tR4uhq8AAAAJ&hl=en
Academia.edu: https://skuast-k.academia.edu/ShubhamShah
1. This tutorial covers using the ggplot2 package in R to visualize data. It demonstrates basic functions like qplot() to produce plots with a single line of code.
2. qplot() is used to visualize relationships in the diamonds dataset between variables like price and carat using scatter plots. Additional parameters like color and shape map variables to different plot aspects.
3. Other geoms like smooth, boxplot, and histogram are used to add trends, summarize distributions, and compare groups in the data. Faceting allows splitting plots by variables. Maps from other packages can also be visualized.
TID Chapter 5 Introduction To Charts And GraphWanBK Leo
This document discusses different types of charts and graphs that can be used to represent data visually. It describes common chart types like pie charts, bar charts, line graphs, and scatter plots. The document explains how each type of chart is best used depending on the nature of the data and the insights that need to be conveyed. It also provides guidance on creating charts in Excel and includes an example of a hands-on exercise for practicing generating different chart types from sample data sets.
This document provides an introduction to ggvis visualization in R. It discusses how ggvis allows creating interactive graphics that can be played with locally in RStudio or in a browser. ggvis graphics combine the modeling capabilities of R with the interactivity of web graphics. The document covers key topics such as:
- Creating basic ggvis plots using layers like layer_points() and adding interactivity.
- Adding variables to control visual properties like color, size and shape.
- Using different layer types including histograms, boxplots, and smoothing.
- Combining multiple layers to build richer graphics.
- Controlling plot elements interactively using sliders.
Odoo 18 Point of Sale PWA - Odoo SlidesCeline George
Progressive Web Apps (PWA) are web applications that deliver an app-like experience using modern web technologies, offering features like offline functionality, installability, and responsiveness across devices.
How to Setup Renewal of Subscription in Odoo 18Celine George
A subscription is a recurring plan where you set a subscription period, such as weekly, monthly, or yearly. Based on this period, the subscription renews automatically. In Odoo 18, you have the flexibility to manage renewals either manually or automatically.
Updated About Me. Used for former college assignments.
Make sure to catch our weekly updates. Updates are done Thursday to Fridays or its a holiday/event weekend.
Thanks again, Readers, Guest Students, and Loyalz/teams.
This profile is older. I started at the beginning of my HQ journey online. It was recommended by AI. AI was very selective but fits my ecourse style. I am media flexible depending on the course platform. More information below.
AI Overview:
“LDMMIA Reiki Yoga refers to a specific program of free online workshops focused on integrating Reiki energy healing techniques with yoga practices. These workshops are led by Leslie M. Moore, also known as LDMMIA, and are designed for all levels, from beginners to those seeking to review their practice. The sessions explore various themes like "Matrix," "Alice in Wonderland," and "Goddess," focusing on self-discovery, inner healing, and shifting personal realities.”
Coleoptera, commonly known as beetles, is the largest order of insects, comprising approximately 400,000 described species. Beetles can be found in almost every habitat on Earth, exhibiting a wide range of morphological, behavioral, and ecological diversity. They have a hardened exoskeleton, with the forewings modified into elytra that protect the hind wings. Beetles play important roles in ecosystems as decomposers, pollinators, and food sources for other animals, while some species are considered pests in agriculture and forestry.
How to Create a Stage or a Pipeline in Odoo 18 CRMCeline George
In Odoo, the CRM (Customer Relationship Management) module’s pipeline is a visual representation of a company's sales process that helps sales teams track and manage their interactions with potential customers.
This study describe how to write the Research Paper and its related issues. It also presents the major sections of Research Paper and various tools & techniques used for Polishing Research Paper
before final submission.
Finding a Right Journal and Publication Ethics are explain in brief.
Jack Lutkus is an education champion, community-minded innovator, and cultural enthusiast. A social work graduate student at Aurora University, he also holds a BA from the University of Iowa.
Active Surveillance For Localized Prostate Cancer A New Paradigm For Clinical...wygalkelceqg
Active Surveillance For Localized Prostate Cancer A New Paradigm For Clinical Management 2nd Ed Klotz
Active Surveillance For Localized Prostate Cancer A New Paradigm For Clinical Management 2nd Ed Klotz
Active Surveillance For Localized Prostate Cancer A New Paradigm For Clinical Management 2nd Ed Klotz
Types of Actions in Odoo 18 - Odoo SlidesCeline George
In Odoo, actions define the system's response to user interactions, like logging in or clicking buttons. They can be stored in the database or returned as dictionaries in methods. Odoo offers various action types for different purposes.
♥☽✷♥
Make sure to catch our weekly updates. Updates are done Thursday to Fridays or its a holiday/event weekend.
Thanks again, Readers, Guest Students, and Loyalz/teams.
This profile is older. I started at the beginning of my HQ journey online. It was recommended by AI. AI was very selective but fits my ecourse style. I am media flexible depending on the course platform. More information below.
AI Overview:
“LDMMIA Reiki Yoga refers to a specific program of free online workshops focused on integrating Reiki energy healing techniques with yoga practices. These workshops are led by Leslie M. Moore, also known as LDMMIA, and are designed for all levels, from beginners to those seeking to review their practice. The sessions explore various themes like "Matrix," "Alice in Wonderland," and "Goddess," focusing on self-discovery, inner healing, and shifting personal realities.”
♥☽✷♥
“So Life Happens-Right? We travel on. Discovering, Exploring, and Learning...”
These Reiki Sessions are timeless and about Energy Healing / Energy Balancing.
A Shorter Summary below.
A 7th FREE WORKSHOP
REiki - Yoga
“Life Happens”
Intro Reflections
Thank you for attending our workshops. If you are new, do welcome. We have been building a base for advanced topics. Also, this info can be fused with any Japanese (JP) Healing, Wellness Plans / Other Reiki /and Yoga practices.
Power Awareness,
Our Defense.
Situations like Destiny Swapping even Evil Eyes are “stealing realities”. It’s causing your hard earned luck to switch out. Either way, it’s cancelling your reality all together. This maybe common recently over the last decade? I noticed it’s a sly easy move to make. Then, we are left wounded, suffering, accepting endless bad luck. It’s time to Power Up. This can be (very) private and quiet. However; building resources/EDU/self care for empowering is your business/your right. It’s a new found power we all can use for healing.
Stressin out-II
“Baby, Calm down, Calm Down.” - Song by Rema, Selena Gomez (Video Premiered Sep 7, 2022)
Within Virtual Work and VR Sims (Secondlife Metaverse) I love catching “Calm Down” On the radio streams. I love Selena first. Second, It’s such a catchy song with an island feel. This blends with both VR and working remotely.
Its also, a good affirmation or mantra to *Calm down* lol.
Something we reviewed in earlier Workshops.
I rarely mention love and relations but theres one caution.
When we date, almost marry an energy drainer/vampire partner; We enter doorways of no return. That person can psychic drain U during/after the relationship. They can also unleash their demons. Their dark energies (chi) can attach itself to you. It’s SYFI but common. Also, involving again, energy awareness. We are suppose to keep our love life sacred. But, Trust accidents do happen. The Energies can linger on. Also, Reiki can heal any breakup damage...
(See Pres for more info. Thx)
Prottutponnomotittwa: A Quiz That Echoed the Pulse of Bengal
On the 31st of May, 2025, PRAGYA – The Official Quiz Club of UEM Kolkata – did not merely organize another quiz. It hosted an ode to Bengal — its people, its quirks, its politics, its art, its rebellion, its heritage. Titled Prottutponnomotittwa, the quiz stood as a metaphor for what Bengal truly is: sharp, intuitive, spontaneous, reflective. A cultural cosmos that thrives on instinct, memory, and emotion.
From the very first slide, it became clear — this wasn’t a quiz made to showcase difficulty or elitism. It was crafted with love — love for Bangla, for its past, present, and its ever-persistent contradictions.
The diversity of the answer list tells the real story of the quiz. The curation was not random. Each answer was a string on a veena of cultural resonance.
In the “Cultural Pairings” round, Anusheh Anadil and Arnob were placed not just as musicians, but as voices of a modern, cross-border Bangla. Their works, which blend baul, jazz, and urban folk, show how Bengal exists simultaneously in Dhaka and Shantiniketan.
The inclusion of Ritwik Chakraborty and Srijit Mukherjee (as a songwriter) showed how the quiz masters understood evolution. Bangla cinema isn’t frozen in the Ray-Ghatak past. It lives, argues, breaks molds — just like these men do.
From Kalyani Black Label to Radhunipagol Chal, consumer culture too had its place. One is liquid courage, the other culinary madness — both deeply Bengali.
The heart truly swelled when the answers touched upon Baidyanath Bhattacharya and Chandril. Both satirists, both sharp, both essential. It was not just about naming them — it was about understanding what different types of literature means in a Bengali context.
Titumir — the play about a peasant rebel who built his own bamboo fort and dared to challenge the British.
Krishnananda Agamvagisha — the mystical Tantric who shaped how we understand esoteric Bengali spiritualism.
Subhas Chandra Bose — the eternal enigma, the braveheart whose shadow looms large over Bengal’s political psyche.
Probashe Ghorkonna — a story lived by many Bengalis. The medinipur daughter, who made a wholesome family, not only in bengal, but across the borders. This answer wasn’t just information. It was emotion.
By the end, what lingered was not the scoreboard. It was a feeling.
The feeling of sitting in a room where Chalchitro meets Chabiwala, where Jamai Shosthi shares the stage with Gayatri Spivak, where Bhupen Hazarika sings with Hemanga Biswas, and where Alimuddin Road and Webskitters occupy the same mental map.
You don’t just remember questions from this quiz.
You remember how it made you feel.
You remember smiling at Keet Keet, nodding at Prabuddha Dasgupta, getting goosebumps at the mention of Bose, and tearing up quietly when someone got Radhunipagol Chal right.
This wasn’t a quiz.
This was an emotional ride of Bangaliyana.
This was — and will remain — Prottutponnomotittwa.
Based in Wauconda, Diana Enriquez teaches dual-language social studies at West Oak Middle School, guiding students in grades 6-8. With a degree from Illinois State University and an ESL/Bilingual certification, she champions diversity and equity in education. Diana’s early experience as a special education paraprofessional shaped her commitment to inclusive and engaging learning.
"Dictyoptera: The Order of Cockroaches and Mantises" Or, more specifically: ...Arshad Shaikh
Dictyoptera is an order of insects that includes cockroaches and praying mantises. These insects are characterized by their flat, oval-shaped bodies and unique features such as modified forelegs in mantises for predation. They inhabit diverse environments worldwide.
Here is the current update:
CURRENT CASE COUNT: 897
- Texas: 742 (+14) (55% of cases are in Gaines County). Includes additional numbers from El Paso.
- New Mexico: 79 (+1) (83% of cases are from Lea County)
- Oklahoma: 17
- Kansas: 59 (+3) (38.89% of the cases are from Gray County)
HOSPITALIZATIONS: 103
- Texas: 94 – This accounts for 13% of all cases in Texas.
- New Mexico: 7 – This accounts for 9.47% of all cases in New Mexico.
- Kansas: 3 – This accounts for 5.08% of all cases in Kansas.
DEATHS: 3
- Texas: 2 – This is 0.28% of all cases in Texas.
- New Mexico: 1 – This is 1.35% of all cases in New Mexico.
US NATIONAL CASE COUNT: 1,132 (confirmed and suspected)
INTERNATIONAL SPREAD
Mexico: 1,856(+103), 4 fatalities
- Chihuahua, Mexico: 1,740 (+83) cases, 3 fatalities, 4 currently hospitalized.
Canada: 2,791 (+273)
- Ontario, Canada: 1,938 (+143) cases. 158 (+29) hospitalizations
- Alberta, Canada: 679 (+119) cases. 4 currently hospitalized
Students will research and orally present a Colombian company using a visual tool, in order to develop their communication skills and intercultural understanding through the exploration of identity, innovation, and local culture, in connection with the IB global themes.
10. R – graph:
R language is mostly used for statistics and data analytics purposes to
represent the data graphically in the software. To represent those data
graphically, charts and graphs are used in R.
There are hundreds of charts and graphs present in R. For example, bar
plots, box plots, mosaic plots, dot charts, coplot, histograms, pie charts,
scatter graphs, etc.
Types of R – Charts
• Pie Diagram or Pie Chart
• Bar Plot or Bar Chart
• Histogram
• Scatter Plot
11. Pie Diagram or Pie Chart
The pie chart is a circular chart divided into different segments
according to the ratio of data provided. The total value of the pie
is 100 and the segments tell the fraction of the whole pie. It is
another method to represent statistical data in graphical form
and the pie() function is used to perform the same.
Syntax: pie(x, labels, col, main, radius)
where,
• x is the data vector
• labels show names given to slices
• col fills the color in the slices as the given parameter
• main shows the title name of the pie chart
Example:
# Create a vector of pies
x <- c(10,20,30,40)
# Create a vector of labels
mylabel <- c("Apples", "Bananas", "Cherries", "Dates")
# Display the pie chart with labels
pie(x, label = mylabel, main = "Fruits")
Out Put:
You can add a color to each pie with the col parameter:
# Create a vector of colors
colors<- c("blue", "yellow", "green", "black")
# Display the pie chart with colors
pie(x, label = mylabel, main = "Fruits", col = colors)
12. Legend
To add a list of explanations for each pie, use
the legend() function:
Example:
# Create a vector of labels
mylabel <- c("Apples", "Bananas", "Cherries", "Dates")
# Create a vector of colors
colors <- c("blue", "yellow", "green", "black")
# Display the pie chart with colors
pie(x, label = mylabel, main = "Pie Chart", col = colors)
# Display the explanation box
legend("bottomright", mylabel, fill = colors)
The legend can be positioned as either:
bottomright, bottom, bottomleft, left, topleft, top, topright,
right, center
Out Put:
13. Bar Charts
A bar chart uses rectangular bars to visualize data. A bar chart
represents data in rectangular bars with the length of the bar
proportional to the value of the variable. R uses the
function barplot() to create bar charts.
Syntax: barplot(data, xlab, ylab)
where:
• data is the data vector to be represented on the y-axis
• xlab is the label given to the x-axis
• ylab is the label given to the y-axis
• names. arg defines the names of each observation in the x-
axis
Example:
x <- c(“Jan", “Feb", “March", “April")
y <- c(2, 4, 6, 8)
barplot(y,name.args = x, col = "yellow", xlab = "Month",
ylab = "Revenue", border = "red“, main = "Revenue bar
chart")
Out Put:
14. Histogram:
A histogram is a graphical representation used to create a graph with
bars representing the frequency of grouped data in a vector. The
histogram is the same as a bar chart, but the only difference is that it
represents the frequency of grouped data rather than the data itself.
Syntax: hist(x, col, border, main, xlab, ylab)
where:
• x is the data vector
• col specifies the color of the bars to be filled
• border specifies the color of the border of bars
• main specifies the title name of the histogram
• xlab specifies the x-axis label
• ylab specifies the y-axis label
• xlim: is used to specify the range of values on the x-axis.
• ylim: is used to specify the range of values on the y-axis.
Example:
v <- c(12, 24, 16, 38, 21, 13, 55, 17, 39, 10, 60, 59, 58)
hist(v, col = “green", xlab = “weight“ ,
ylab = “Frequency", border = "red“, main = “Frequency bar
chart“, ylim = c (0,5), xlim =c (10,60))
Out put:
15. Scatter plot:
A "scatter plot" is a type of plot used to display the relationship between
two numerical variables, and plots one dot for each observation.
It needs two vectors of the same length, one for the x-axis (horizontal)
and one for the y-axis (vertical).a
Syntax: plot(x, y, type, xlab, ylab, main)
Where,
• x is the data vector represented on the x-axis
• y is the data vector represented on the y-axis
• xlab specifies the label for the x-axis
• ylab specifies the label for the y-axis
• main specifies the title name of the graph
• xlim: This parameter is used for plotting values of x.
• ylim: This parameter is used for plotting values of y.
Example:
x <- c(5,7,8,7,2,2,9,4,11,12,9,6)
y <- c(99,86,87,88,111,103,87,94,78,77,85,86)
plot(x, y, main="Observation of Cars", xlab="Car age", ylab="Car
speed“ , xlim = c(2,12), ylim = c(80,5 )
To recap, the observation in the example above is the result of 12 cars
passing by.
Out Put:
The x-axis shows how old the car is.
The y-axis shows the speed of the car when it passes.
Are there any relationships between the observations?
It seems that the newer the car, the faster it drives.