diff --git a/index.html b/index.html index 97cd9f9..5985492 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@ - + index @@ -30,7 +30,7 @@ } /* CSS for syntax highlighting */ pre > code.sourceCode { white-space: pre; position: relative; } - pre > code.sourceCode > span { display: inline-block; line-height: 1.25; } + pre > code.sourceCode > span { line-height: 1.25; } pre > code.sourceCode > span:empty { height: 1.2em; } .sourceCode { overflow: visible; } code.sourceCode > span { color: inherit; text-decoration: inherit; } @@ -41,7 +41,7 @@ } @media print { pre > code.sourceCode { white-space: pre-wrap; } - pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; } + pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; } } pre.numberSource code { counter-reset: source-line 0; } @@ -69,7 +69,7 @@ code span.at { color: #657422; } /* Attribute */ code span.bn { color: #ad0000; } /* BaseN */ code span.bu { } /* BuiltIn */ - code span.cf { color: #003b4f; } /* ControlFlow */ + code span.cf { color: #003b4f; font-weight: bold; } /* ControlFlow */ code span.ch { color: #20794d; } /* Char */ code span.cn { color: #8f5902; } /* Constant */ code span.co { color: #5e5e5e; } /* Comment */ @@ -83,7 +83,7 @@ code span.fu { color: #4758ab; } /* Function */ code span.im { color: #00769e; } /* Import */ code span.in { color: #5e5e5e; } /* Information */ - code span.kw { color: #003b4f; } /* Keyword */ + code span.kw { color: #003b4f; font-weight: bold; } /* Keyword */ code span.op { color: #5e5e5e; } /* Operator */ code span.ot { color: #003b4f; } /* Other */ code span.pp { color: #ad0000; } /* Preprocessor */ @@ -220,7 +220,8 @@ } .callout.callout-titled .callout-body > .callout-content > :last-child { - margin-bottom: 0.5rem; + padding-bottom: 0.5rem; + margin-bottom: 0; } .callout.callout-titled .callout-icon::before { @@ -394,7 +395,7 @@

Introduction to Arrow in R

NEDs Workshop (18th July 2024)

-

+

@@ -458,12 +459,14 @@

Getting set up

Dataset to follow along with

-
options(timeout = 1800)
-download.file(
-  url = "https://r4ds.s3.us-west-2.amazonaws.com/seattle-library-checkouts.csv",
-  destfile = "./data/seattle-library-checkouts.csv"
-)
+
options(timeout = 18000)
+curl::multi_download(
+  "https://r4ds.s3.us-west-2.amazonaws.com/seattle-library-checkouts.csv",
+  "data/seattle-library-checkouts.csv",
+  resume = TRUE
+)
+

If your download stops partway through, you can stop and resume from the same place.