Skip to content

Commit da8b593

Browse files
committed
suppress printing of penguins data in docs
1 parent 14de9bd commit da8b593

25 files changed

+26
-26
lines changed

docs/examples/UserGuide/gettingstarted.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using TidierPlots
22
using DataFrames
33

4-
penguins = penguins_data()
4+
penguins = penguins_data();
55

66
# ## `ggplot()`
77
# `ggplot()` is the starting point of any plot. It sets up the initial plot with default settings that can be later customized with geoms, scales, theme settings and other specifications. `ggplot` usually used with a data source as an argument, and optionally, a set of aesthetics specified by @aes(). The data source is typically a DataFrame.

docs/examples/geoms/geom_bar.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
using TidierPlots
4040
using DataFrames
4141

42-
penguins = penguins_data()
42+
penguins = penguins_data();
4343

4444
# For basic counting, provide only an x aesthetic. The height of each bar will represent the count of observations in each category.
4545

docs/examples/geoms/geom_boxplot.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
using TidierPlots
5050
using DataFrames
5151

52-
penguins = penguins_data()
52+
penguins = penguins_data();
5353

5454
# Create a basic boxplot showing the distribution of bill length for each species:
5555

docs/examples/geoms/geom_col.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ using TidierPlots
4646
using TidierData
4747
using DataFrames
4848

49-
penguins = penguins_data()
49+
penguins = penguins_data();
5050

5151
# First, we create a summarized dataset with mean bill length by species and sex:
5252

docs/examples/geoms/geom_density.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
using TidierPlots
4343
using DataFrames
4444

45-
penguins = penguins_data()
45+
penguins = penguins_data();
4646

4747
# Create a basic density plot showing the distribution of bill length:
4848

docs/examples/geoms/geom_errorbars.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ using TidierData
4242
using DataFrames
4343
using Statistics
4444

45-
penguins = penguins_data()
45+
penguins = penguins_data();
4646

4747
# First, create a summary dataset with means and standard deviations:
4848

docs/examples/geoms/geom_hist.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
using TidierPlots
4949
using DataFrames
5050

51-
penguins = penguins_data()
51+
penguins = penguins_data();
5252

5353
# Create a basic histogram of bill length:
5454

docs/examples/geoms/geom_hvlines.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ using TidierPlots
4141
using TidierData
4242
using DataFrames
4343

44-
penguins = penguins_data()
44+
penguins = penguins_data();
4545

4646
# ## Horizontal Lines
4747

docs/examples/geoms/geom_lines.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ggplot(df, @aes(x = x, y = y)) +
8888

8989
# `geom_path()` connects points in the order they appear in the data. This is useful for trajectories or paths through 2D space:
9090

91-
penguins = penguins_data()
91+
penguins = penguins_data();
9292

9393
ggplot(penguins, @aes(x = bill_length_mm, y = bill_depth_mm)) +
9494
geom_path(alpha = 0.3)

docs/examples/geoms/geom_point.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ using RDatasets
4545
using CategoricalArrays
4646
using Makie
4747

48-
penguins = penguins_data()
48+
penguins = penguins_data();
4949
diamonds = dataset("ggplot2", "diamonds");
5050
mtcars = dataset("datasets", "mtcars");
5151

0 commit comments

Comments
 (0)