0Pricing
R Academy · Lesson

Layers and Geoms

Add different layers to plots, including points, lines, bars, and more to build complex visualizations.

Layers and Geoms is a free R Academy lesson on CoddyKit — lesson 2 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the R Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.

1

Introduction to Layers and Geoms in ggplot2

ggplot2 builds plots using layers. Each layer adds more information to the visualization.

Layers and Geoms — illustration 1

2

Understanding Layers

Each ggplot consists of multiple layers that define data, aesthetics, and geoms.

ggplot(mtcars, aes(x=mpg, y=hp)) + geom_point() + geom_smooth()

3

Using geom_point()

geom_point() is used to create scatter plots.

ggplot(mtcars, aes(x=mpg, y=hp)) + geom_point(color='blue')

4

Using geom_line()

geom_line() is used to create line charts.

ggplot(mtcars, aes(x=mpg, y=hp)) + geom_line()

5

Using geom_bar()

geom_bar() is used for bar charts.

ggplot(mtcars, aes(x=factor(cyl))) + geom_bar()

6

Using geom_histogram()

geom_histogram() is used for visualizing distributions.

ggplot(mtcars, aes(x=mpg)) + geom_histogram(binwidth=2, fill='blue')

7

Using Multiple Geoms

You can add multiple geoms to the same plot.

ggplot(mtcars, aes(x=mpg, y=hp)) + geom_point() + geom_smooth()

8

9

Customizing Geoms

You can modify geoms using aesthetics like color, size, and shape.

ggplot(mtcars, aes(x=mpg, y=hp)) + geom_point(color='red', size=3)

10

Summary

In this lesson, you learned:

  • How to use different geoms in ggplot2.
  • How to layer multiple geoms on a single plot.
  • How to customize geoms for better visualization.
Layers and Geoms — illustration 10

Frequently asked questions

Is the “Layers and Geoms” lesson free?

Yes — the full text of “Layers and Geoms” is free to read here on the web, and the R Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the R Academy course, upgrade to CoddyKit PRO.

What will I learn in “Layers and Geoms”?

Add different layers to plots, including points, lines, bars, and more to build complex visualizations. You practise R Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start R Academy?

No prior experience is required. R Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 3, so you can start here or from the beginning and move at your own pace.

How long does the “Layers and Geoms” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this R Academy lesson?

Yes. Every R Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. ggplot2 Basics
  2. Layers and Geoms
  3. Theme Customization
← Back to R Academy