2. Data Visualisation#

2.1. Introduction#

“The simple graph has brought more information to the data analyst’s mind than any other device.” — John Tukey

This chapter will teach you how to visualise your data using using letsplot.

There are broadly two categories of approach to using code to create data visualisations: imperative, where you build what you want, and declarative, where you say what you want. Choosing which to use involves a trade-off: imperative libraries offer you flexibility but at the cost of some verbosity; declarative libraries offer you a quick way to plot your data, but only if it’s in the right format to begin with, and customisation to special chart types is more difficult. Python has many excellent plotting packages, including perhaps the most powerful imperative plotting package around, matplotlib.

However, we’ll get further faster by learning one system and applying it in many places—and the beauty of declarative plotting is that it covers lots of standard charts simply and well. letsplot implements the so-called grammar of graphics, a coherent declarative system for describing and building graphs.

We will start by creating a simple scatterplot and use that to introduce aesthetic mappings and geometric objects—the fundamental building blocks of letsplot. We will then walk you through visualising distributions of single variables as well as visualising relationships between two or more variables. We’ll finish off with saving your plots and troubleshooting tips.

2.1.1. Prerequisites#

You will need to install the letsplot package for this chapter. To do this, open up the command line of your computer, type in pip install lets-plot, and hit enter.

Note

The command line can be opened within Visual Studio Code and Codespaces by going to View -> Terminal.

Note that you only need to install a package once in each Python environment.

We’ll also need to have the pandas package installed—this package, which we’ll be seeing a lot of, is for data. You can similarly install it by running pip install pandas on the command line.

Finally, we’ll also need some data (you can’t science without data). We’ll be using the Palmer penguins dataset. Unusually, this can also be installed as a package—normally you would load data from a file, but these data are so popular for tutorials they’ve found their way into an installable package. Run pip install palmerpenguins to get these data.

Our next task is to load these into our Python session, either in a Python notebook cell within a Jupyter Notebook, by writing it in a script that we then send to the interactive window, or by typing it directly into the interactive window and hitting shift and enter. Here’s the code:

import pandas as pd
from palmerpenguins import load_penguins
from lets_plot import *

LetsPlot.setup_html()

These lines import parts of the pandas and palmerpenguins packages, then import all (*) of the functions of the letsplot package. The final line allows charts to display in HTML.

2.2. First Steps#

Do penguins with longer flippers weigh more or less than penguins with shorter flippers? You probably already have an answer, but try to make your answer precise. What does the relationship between flipper length and body mass look like? Is it positive? Negative? Linear? Nonlinear? Does the relationship vary by the species of the penguin? How about by the island where the penguin lives? Let’s create visualisations that we can use to answer these questions.

2.2.1. The penguins data frame#

You can test your answers to those questions with the penguins data frame found in palmerpenguins (a.k.a. from palmerpenguins import load_penguins). A data frame is a rectangular collection of variables (in the columns) and observations (in the rows). penguins contains 344 observations collected and made available by Dr. Kristen Gorman and the Palmer Station, Antarctica LTER.[HHG20].

To make the discussion easier, let’s define some terms:

  • A variable is a quantity, quality, or property that you can measure.

  • A value is the state of a variable when you measure it. The value of a variable may change from measurement to measurement.

  • An observation is a set of measurements made under similar conditions (you usually make all of the measurements in an observation at the same time and on the same object). An observation will contain several values, each associated with a different variable. We’ll sometimes refer to an observation as a data point.

  • Tabular data is a set of values, each associated with a variable and an observation. Tabular data is tidy if each value is placed in its own “cell”, each variable in its own column, and each observation in its own row.

In this context, a variable refers to an attribute of all the penguins, and an observation refers to all the attributes of a single penguin.

Type the name of the data frame in the interactive window and Python will print a preview of its contents.

penguins = load_penguins()
penguins
species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g sex year
0 Adelie Torgersen 39.1 18.7 181.0 3750.0 male 2007
1 Adelie Torgersen 39.5 17.4 186.0 3800.0 female 2007
2 Adelie Torgersen 40.3 18.0 195.0 3250.0 female 2007
3 Adelie Torgersen NaN NaN NaN NaN NaN 2007
4 Adelie Torgersen 36.7 19.3 193.0 3450.0 female 2007
... ... ... ... ... ... ... ... ...
339 Chinstrap Dream 55.8 19.8 207.0 4000.0 male 2009
340 Chinstrap Dream 43.5 18.1 202.0 3400.0 female 2009
341 Chinstrap Dream 49.6 18.2 193.0 3775.0 male 2009
342 Chinstrap Dream 50.8 19.0 210.0 4100.0 male 2009
343 Chinstrap Dream 50.2 18.7 198.0 3775.0 female 2009

344 rows × 8 columns

For an alternative view, where you can see the first few observations of each variable, use penguins.head().

penguins.head()
species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g sex year
0 Adelie Torgersen 39.1 18.7 181.0 3750.0 male 2007
1 Adelie Torgersen 39.5 17.4 186.0 3800.0 female 2007
2 Adelie Torgersen 40.3 18.0 195.0 3250.0 female 2007
3 Adelie Torgersen NaN NaN NaN NaN NaN 2007
4 Adelie Torgersen 36.7 19.3 193.0 3450.0 female 2007

Among the variables in penguins are:

  1. species: a penguin’s species (Adelie, Chinstrap, or Gentoo).

  2. flipper_length_mm: length of a penguin’s flipper, in millimeters.

  3. body_mass_g: body mass of a penguin, in grams.

To learn more about penguins, open the help page of its data-loading function by running help(load_penguins).

2.2.2. Ultimate Goal#

Our ultimate goal in this chapter is to recreate the following visualisation displaying the relationship between flipper lengths and body masses of these penguins, taking into consideration the species of the penguin.

2.2.3. Creating a Plot#

Let’s recreate this plot step-by-step.

With letsplot, you begin a plot with the function ggplot(), defining a plot object that you then add layers to.

The first argument of ggplot() is the dataset to use in the graph and so ggplot(data = penguins) creates an empty graph that is primed to display the penguins data, but since we haven’t told it how to visualise it yet, for now it’s empty. Because it’s empty, running this alone would raise an error message: it’s an empty canvas that you’ll paint the remaining layers of your plot onto.

ggplot(data = penguins)

Next, we need to tell ggplot() how the information from our data will be visually represented.

The mapping argument of the ggplot() function defines how variables in your dataset are mapped to visual properties (aesthetics) of your plot. The mapping argument is always defined in the aes() function, and the x and y arguments of aes() specify which variables to map to the x and y axes. For now, we will only map flipper length to the x aesthetic and body mass to the y aesthetic. letsplot looks for the mapped variables in the data argument, in this case, penguins.

Again, we haven’t actually specified anything to plot, so running

ggplot(
  data = penguins,
  mapping = aes(x = "flipper_length_mm", y = "body_mass_g")
)

would raise an error. This is because we have not yet articulated, in our code, how to represent the observations from our data frame on our plot.

To do so, we need to define a geom: the geometrical object that a plot uses to represent data. These geometric objects are made available in letsplot with functions that start with geom_.

People often describe plots by the type of geom that the plot uses. For example, bar charts use bar geoms (geom_bar()), line charts use line geoms (geom_line()), boxplots use boxplot geoms (geom_boxplot()), scatterplots use point geoms (geom_point()), and so on.

The function geom_point() adds a layer of points to your plot, which creates a scatterplot. letsplot comes with many geom functions that each adds a different type of layer to a plot.

(
    ggplot(data=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
    + geom_point()
)

Now we have something that looks like what we might think of as a “scatterplot”. It doesn’t yet match our “ultimate goal” plot, but using this plot we can start answering the question that motivated our exploration: “What does the relationship between flipper length and body mass look like?” The relationship appears to be positive (as flipper length increases, so does body mass), fairly linear (the points are clustered around a line instead of a curve), and moderately strong (there isn’t too much scatter around such a line). Penguins with longer flippers are generally larger in terms of their body mass.

It’s a good point to flag that although we have plotted everything in the penguins data frame, there were a couple of rows with undefined values—and of course these cannot be plotted.

2.2.4. Adding aesthetics and layers#

Scatterplots are useful for displaying the relationship between two numerical variables, but it’s always a good idea to be skeptical of any apparent relationship between two variables and ask if there may be other variables that explain or change the nature of this apparent relationship. For example, does the relationship between flipper length and body mass differ by species?

Let’s incorporate species into our plot and see if this reveals any additional insights into the apparent relationship between these variables. We will do this by representing species with different colored points.

To achieve this, will we need to modify the aesthetic or the geom? If you guessed “in the aesthetic mapping, inside of aes()”, you’re already getting the hang of creating data visualisations with letsplot! And if not, don’t worry.

Throughout the book you will make many more plots and have many more opportunities to check your intuition as you make them.

(
    ggplot(
        data=penguins,
        mapping=aes(x="flipper_length_mm", y="body_mass_g", color="species"),
    )
    + geom_point()
)

When a categorical variable is mapped to an aesthetic, letsplot will automatically assign a unique value of the aesthetic (here a unique color) to each unique level of the variable (each of the three species), a process known as scaling.

letsplot will also add a legend that explains which values correspond to which levels.

Now let’s add one more layer: a smooth curve displaying the relationship between body mass and flipper length.

Before you proceed, refer back to the code above, and think about how we can add this to our existing plot.

Since this is a new geometric object representing our data, we will add a new geom as a layer on top of our point geom: geom_smooth().

And we will specify that we want to draw the line of best fit based on a linear model with method = "lm".

(
    ggplot(
        data=penguins,
        mapping=aes(x="flipper_length_mm", y="body_mass_g", color="species"),
    )
    + geom_point()
    + geom_smooth(method="lm")
)

We have successfully added lines, but this plot doesn’t look like the plot from earlier as that only had one line for the entire dataset as opposed to separate lines for each of the penguin species.

When aesthetic mappings are defined in ggplot(), at the global level, they’re passed down to each of the subsequent geom layers of the plot.

However, each geom function in letplot can also take a mapping argument, which allows for aesthetic mappings at the local level that are added to those inherited from the global level.

Since we want points to be colored based on species but don’t want the lines to be separated out for them, we should specify color = species for geom_point() only: therefore we take it out of the global aes() and just add it to geom_point().

(
    ggplot(data=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
    + geom_point(mapping=aes(color="species"))
    + geom_smooth(method="lm")
)

Voila! We have something that looks very much like our ultimate goal, though it’s not yet perfect.

We still need to use different shapes for each species of penguins and improve labels.

It’s generally not a good idea to represent information using only colors on a plot, as people perceive colors differently due to color blindness or other color vision differences. Therefore, in addition to color, we can also map species to the shape aesthetic.

(
    ggplot(data=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
    + geom_point(mapping=aes(color="species", shape="species"))
    + geom_smooth(method="lm")
)

Note that the legend is automatically updated to reflect the different shapes of the points as well.

And finally, we can improve the labels of our plot using the labs() function in a new layer. Some of the arguments to labs() might be self explanatory: title adds a title and subtitle adds a subtitle to the plot. Other arguments match the aesthetic mappings, x is the x-axis label, y is the y-axis label, and color and shape define the label for the legend.

(
    ggplot(data=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
    + geom_point(aes(color="species", shape="species"))
    + geom_smooth(method="lm")
    + labs(
        title="Body mass and flipper length",
        subtitle="Dimensions for Adelie, Chinstrap, and Gentoo Penguins",
        x="Flipper length (mm)",
        y="Body mass (g)",
        color="Species",
        shape="Species",
    )
)

We finally have a plot that perfectly matches our “ultimate goal”!

2.2.5. Exercises#

  1. How many rows are in penguins? How many columns?

  2. What does the bill_depth_mm variable in the penguins data frame describe? Read the help for ?penguins to find out.

  3. Make a scatterplot of bill_depth_mm vs. bill_length_mm. That is, make a scatterplot with bill_depth_mm on the y-axis and bill_length_mm on the x-axis. Describe the relationship between these two variables.

  4. What happens if you make a scatterplot of species vs. bill_depth_mm? What might be a better choice of geom?

  5. Why does the following give an error and how would you fix it?

    (ggplot(data = penguins) + 
      geom_point())
    
  6. Add the following caption to the plot you made in the previous exercise: “Data come from the palmerpenguins package.” Hint: Take a look at the documentation for labs().

  7. Recreate the following visualisation. What aesthetic should bill_depth_mm be mapped to? And should it be mapped at the global level or at the geom level?

  1. Run this code in your head and predict what the output will look like. Then, run the code in Python and check your predictions.

    
    (ggplot(
      data = penguins,
      mapping = aes(x = "flipper_length_mm", y = "body_mass_g", color = "island")
    ) +
      geom_point() +
      geom_smooth(se = False)
    )
    
  2. Will these two graphs look different? Why/why not?

    
    (ggplot(
      data = penguins,
      mapping = aes(x = "flipper_length_mm", y = "body_mass_g")
    ) +
      geom_point() +
      geom_smooth()
    )
    
    (ggplot() +
      geom_point(
        data = penguins,
        mapping = aes(x = "flipper_length_mm", y = "body_mass_g")
      ) +
      geom_smooth(
        data = penguins,
        mapping = aes(x = "flipper_length_mm", y = "body_mass_g")
      )
    )
    

2.3. letsplot calls#

As we move on from these introductory sections, we’ll transition to a more concise expression of letsplot code.

So far we’ve been very explicit, which is helpful when you are learning:

(ggplot(
  data = penguins,
  mapping = aes(x = "flipper_length_mm", y = "body_mass_g")
) +
  geom_point())

Typically, the first one or two arguments to a function are so important that you should know them by heart. The first two arguments to ggplot() are data and mapping, in the remainder of the book, we won’t supply those names—the way the function is written, Python knows to expect these variables because of their position. Not writing them in saves typing, and, by reducing the amount of extra text, makes it easier to see what’s different between plots. That’s a really important programming concern that we’ll come back to later.

Rewriting the previous plot more concisely yields:

(
    ggplot(penguins, aes(x = "flipper_length_mm", y = "body_mass_g")) + 
  geom_point()
)

2.4. visualising distributions#

How you visualise the distribution of a variable depends on the type of variable: categorical or numerical.

2.4.1. A categorical variable#

A variable is categorical if it can only take one of a small set of values. To examine the distribution of a categorical variable, you can use a bar chart. The height of the bars displays how many observations occurred with each x value.

(ggplot(penguins, aes(x="species")) + geom_bar())

You may have seen earlier that the data type of the "species" column is string. Ideally, we want it to be categorical, so that there’s no confusion about the fact that we’re dealing with a finite number of mutually exclusive groups here. Another advantage is that it allows plotting tools to realise what kind of data it is working with.

We can transform the variable to a categorical variable using pandas like so:

penguins["species"] = penguins["species"].astype("category")
penguins.head()
species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g sex year
0 Adelie Torgersen 39.1 18.7 181.0 3750.0 male 2007
1 Adelie Torgersen 39.5 17.4 186.0 3800.0 female 2007
2 Adelie Torgersen 40.3 18.0 195.0 3250.0 female 2007
3 Adelie Torgersen NaN NaN NaN NaN NaN 2007
4 Adelie Torgersen 36.7 19.3 193.0 3450.0 female 2007

You will learn more about categorical variables later in the book.

2.4.2. A numerical variable#

A variable is numerical (or quantitative) if it can take on a wide range of numerical values, and it is sensible to add, subtract, or take averages with those values. Numerical variables can be continuous or discrete.

One commonly used visualisation for distributions of continuous variables is a histogram.

(ggplot(penguins, aes(x="body_mass_g")) + geom_histogram(binwidth=200))

A histogram divides the x-axis into equally spaced bins and then uses the height of a bar to display the number of observations that fall in each bin. In the graph above, the tallest bar shows that 39 observations have a body_mass_g value between 3,500 and 3,700 grams, which are the left and right edges of the bar.

You can set the width of the intervals in a histogram with the binwidth argument, which is measured in the units of the x variable. You should always explore a variety of binwidths when working with histograms, as different binwidths can reveal different patterns. In the plots below a binwidth of 20 is too narrow, resulting in too many bars, making it difficult to determine the shape of the distribution. Similarly, a binwidth of 2,000 is too high, resulting in all data being binned into only three bars, and also making it difficult to determine the shape of the distribution. A binwidth of 200 provides a sensible balance, but you should always look at your data a few different ways, especially with histograms as they can be misleading.

An alternative visualisation for distributions of numerical variables is a density plot. A density plot is a smoothed-out version of a histogram and a practical alternative, particularly for continuous data that comes from an underlying smooth distribution. We won’t go into how geom_density() estimates the density (you can read more about that in the function documentation), but let’s explain how the density curve is drawn with an analogy. Imagine a histogram made out of wooden blocks. Then, imagine that you drop a cooked spaghetti string over it. The shape the spaghetti will take draped over blocks can be thought of as the shape of the density curve. It shows fewer details than a histogram but can make it easier to quickly glean the shape of the distribution, particularly with respect to modes and skewness.

(ggplot(penguins, aes(x="body_mass_g")) + geom_density())

2.4.3. Exercises#

  1. Make a bar plot of "species" of penguins, where you assign "species" to the y aesthetic. How is this plot different?

  2. How are the following two plots different? Which aesthetic, color or fill, is more useful for changing the color of bars?

    (ggplot(penguins, aes(x = species)) +
      geom_bar(color = "red"))
    

(ggplot(penguins, aes(x = species)) + geom_bar(fill = “red”)) ```

  1. What does the bins argument in geom_histogram() do?

2.5. Visualising Relationships#

To visualise a relationship we need to have at least two variables mapped to aesthetics of a plot—though you should remember that correlation is not causation, and causation is not correlation!

In the following sections you will learn about commonly used plots for visualising relationships between two or more variables and the geoms used for creating them.

2.5.1. A numerical and a categorical variable#

To visualise the relationship between a numerical and a categorical variable we can use side-by-side box plots.

A boxplot is a type of visual shorthand for measures of position within a distribution (percentiles).

It is also useful for identifying potential outliers. Each boxplot consists of:

  • A box that indicates the range of the middle half of the data, a distance known as the interquartile range (IQR), stretching from the 25th percentile of the distribution to the 75th percentile. In the middle of the box is a line that displays the median, i.e. 50th percentile, of the distribution. These three lines give you a sense of the spread of the distribution and whether or not the distribution is symmetric about the median or skewed to one side.

  • Visual points that display observations that fall more than 1.5 times the IQR from either edge of the box. These outlying points are unusual so are plotted individually.

  • A line (or whisker) that extends from each end of the box and goes to the farthest non-outlier point in the distribution.

Let’s take a look at the distribution of body mass by species using geom_boxplot():

(ggplot(penguins, aes(x="species", y="body_mass_g")) + geom_boxplot())

Alternatively, we can make probability density plots with geom_density().

(ggplot(penguins, aes(x="body_mass_g", color="species")) + geom_density(size=2))

We’ve also customized the thickness of the lines using the size argument in order to make them stand out a bit more against the background.

Additionally, we can map species to both color and fill aesthetics and use the alpha aesthetic to add transparency to the filled density curves. This aesthetic takes values between 0 (completely transparent) and 1 (completely opaque). In the following plot it’s set to 0.5.

(
    ggplot(penguins, aes(x="body_mass_g", color="species", fill="species"))
    + geom_density(alpha=0.5)
)

Note the terminology we have used here:

  • We map variables to aesthetics if we want the visual attribute represented by that aesthetic to vary based on the values of that variable.

  • Otherwise, we set the value of an aesthetic.

2.5.2. Two categorical variables#

We can use stacked bar plots to visualise the relationship between two categorical variables.

For example, the following two stacked bar plots both display the relationship between island and species, or specifically, visualising the distribution of species within each island.

The first plot shows the frequencies of each species of penguins on each island. The plot of frequencies show that there are equal numbers of Adelies on each island.

But we don’t have a good sense of the percentage balance within each island.

(ggplot(penguins, aes(x="island", fill="species")) + geom_bar())

The second plot is a relative frequency plot, created by setting position = "fill" in the geom is more useful for comparing species distributions across islands since it’s not affected by the unequal numbers of penguins across the islands.

Using this plot we can see that Gentoo penguins all live on Biscoe island and make up roughly 75% of the penguins on that island, Chinstrap all live on Dream island and make up roughly 50% of the penguins on that island, and Adelie live on all three islands and make up all of the penguins on Torgersen.

(ggplot(penguins, aes(x="island", fill="species")) + geom_bar(position="fill"))

In creating these bar charts, we map the variable that will be separated into bars to the x aesthetic, and the variable that will change the colors inside the bars to the fill aesthetic.

2.5.3. Two numerical variables#

So far you’ve learned about scatterplots (created with geom_point()) and smooth curves (created with geom_smooth()) for visualising the relationship between two numerical variables. A scatterplot is probably the most commonly used plot for visualising the relationship between two numerical variables.

(ggplot(penguins, aes(x="flipper_length_mm", y="body_mass_g")) + geom_point())

2.5.4. Three or more variables#

As we saw already, we can incorporate more variables into a plot by mapping them to additional aesthetics.

For example, in the following scatterplot the colors of points represent species and the shapes of points represent islands.

(
    ggplot(penguins, aes(x="flipper_length_mm", y="body_mass_g"))
    + geom_point(aes(color="species", shape="island"))
)

However adding too many aesthetic mappings to a plot makes it cluttered and difficult to make sense of.

Another way, which is particularly useful for categorical variables, is to split your plot into facets (also known as small multiples), subplots that each display one subset of the data.

To facet your plot by a single variable, use facet_wrap().

The first argument of facet_wrap() tells the function what variable to have in successive charts. The variable that you pass to facet_wrap() should be categorical.

(
    ggplot(penguins, aes(x="flipper_length_mm", y="body_mass_g"))
    + geom_point(aes(color="species", shape="species"))
    + facet_wrap(facets="island")
)

You will learn about many other geoms for visualising distributions of variables and relationships between them in later chapters.

2.5.5. Exercises#

  1. Make a scatterplot of bill_depth_mm vs. bill_length_mm and color the points by species. What does adding coloring by species reveal about the relationship between these two variables? What about faceting by species?

  2. Why does the following yield two separate legends? How would you fix it to combine the two legends?

    (
        ggplot(
          data = penguins,
          mapping = aes(
            x = "bill_length_mm", y = "bill_depth_mm", 
            color = "species", shape = "species"
          )
        ) +
          geom_point() +
          labs(color = "Species")
    )
    
  3. Create the two following stacked bar plots. Which question can you answer with the first one? Which question can you answer with the second one?

    ggplot(penguins, aes(x = "island", fill = "species")) +
      geom_bar(position = "fill")
    ggplot(penguins, aes(x = "species", fill = "island")) +
      geom_bar(position = "fill")
    

2.6. Saving your plots#

Once you’ve made a plot, you might want to save it as an image that you can use elsewhere. That’s the job of ggsave(), which will save the plot most recently created to disk:

plotted_data = (
    ggplot(penguins, aes(x="flipper_length_mm", y="body_mass_g")) + geom_point()
)
ggsave(plotted_data, filename="penguin-plot.svg")
'/Users/aet/Documents/git_projects/python4DS/lets-plot-images/penguin-plot.svg'

This saved the figure to disk at the location shown—by default it’s in a subdirectory called “lets-plot-images”.

We used the file format “svg”. There are lots of output options to choose from to save your file to. Remember that, for graphics, vector formats are generally better than raster formats. In practice, this means saving plots in svg or pdf formats over jpg or png file formats. The svg format works in a lot of contexts (including Microsoft Word) and is a good default. To choose between formats, just supply the file extension and the file type will change automatically, eg “chart.svg” for svg or “chart.png” for png. You can also save figures in HTML format.

If you’re using a raster format then you’ll need to specify how big the figure is via the scale keyword argument.

2.6.1. Exercises#

  1. Save the figure above as a PNG. Try varying the scale.

2.7. Common Problems#

As you start to run code, you’re likely to run into problems. Don’t worry—it happens to everyone. We have all been writing Python code for years, but every day we still write code that doesn’t work on the first try!

Start by carefully comparing the code that you’re running to the code in the book: A misplaced character can make all the difference! Make sure that every ( is matched with a ) and every " is paired with another ". In Visual Studio Code, you can get extensions that colour match brackets so you can easily see if you closed them or not.

Sometimes you’ll run the code and nothing happens.

For those coming from the R statistical programming language, you may be concerned about getting your + in the wrong place. Have no fear, however, as in the syntax for letsplot the + can go at the start or the end of the line.

If you’re still stuck, try the help. You can get help about any Python function by running help(function_name) in the interactive window. Don’t worry if the help doesn’t seem that helpful - instead skip down to the examples and look for code that matches what you’re trying to do.

If you’re still stuck, check out the letsplot documentation or doing a Google search (especially helpful for error messages).

2.8. Summary#

In this chapter, you’ve learned the basics of data visualisation with letsplot. We started with the basic idea that underpins letsplot: a visualisation is a mapping from variables in your data to aesthetic properties like position, colour, size and shape. You then learned about increasing the complexity and improving the presentation of your plots layer-by-layer. You also learned about commonly used plots for visualising the distribution of a single variable as well as for visualising relationships between two or more variables, by leveraging additional aesthetic mappings and/or splitting your plot into small multiples using faceting.

We’ll use visualisations again and again throughout this book, introducing new techniques as we need them as well as do a deeper dive into creating visualisations with letsplot in subsequent chapters.

With the basics of visualisation under your belt, in the next chapter we’re going to switch gears a little and give you some practical workflow advice. We intersperse workflow advice with data science tools throughout this part of the book because it’ll help you stay organised as you write more Python code.