Skip to content

Commit c2db21d

Browse files
committed
Fixed typo
1 parent 9dc2dad commit c2db21d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/src/lecture_04/interaction.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,8 @@ R> ggplot($mtcars, aes(x = WT, y = MPG)) + geom_point()
7171
The package also provides string syntax, that allows non-interactive usage. The previous example can be rewritten as follows.
7272

7373
```julia
74-
julia> using RCall, RDatasets
75-
76-
julia> mtcars = dataset("datasets", "mtcars");
74+
using RCall, RDatasets
75+
mtcars = dataset("datasets", "mtcars");
7776

7877
R"""
7978
library(ggplot2)

0 commit comments

Comments
 (0)