Upgrade to PRO for Only $50/Year—Limited-Time Offer! 🔥
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Preparation slides for R-tistic class
Search
Lars Schoebitz
March 14, 2017
Programming
0
180
Preparation slides for R-tistic class
HTML slides:
http://bit.ly/2nnt9cw
Website:
http://lse.de/r-tistic/
Lars Schoebitz
March 14, 2017
Tweet
Share
More Decks by Lars Schoebitz
See All by Lars Schoebitz
Introduction slides for R-tistic class
larnsce
0
170
R-tistic class - Data visualisation with ggplot2
larnsce
0
140
Other Decks in Programming
See All in Programming
ローターアクトEクラブ アメリカンナイト:川端 柚菜 氏(Japan O.K. ローターアクトEクラブ 会長):2720 Japan O.K. ロータリーEクラブ2025年12月1日卓話
2720japanoke
0
730
connect-python: convenient protobuf RPC for Python
anuraaga
0
400
AtCoder Conference 2025「LLM時代のAHC」
imjk
2
470
DevFest Android in Korea 2025 - 개발자 커뮤니티를 통해 얻는 가치
wisemuji
0
140
Github Copilotのチャット履歴ビューワーを作りました~WPF、dotnet10もあるよ~ #clrh111
katsuyuzu
0
110
なあ兄弟、 余白の意味を考えてから UI実装してくれ!
ktcryomm
11
11k
20251212 AI 時代的 Legacy Code 營救術 2025 WebConf
mouson
0
130
251126 TestState APIってなんだっけ?Step Functionsテストどう変わる?
east_takumi
0
320
俺流レスポンシブコーディング 2025
tak_dcxi
14
8.7k
ZOZOにおけるAI活用の現在 ~モバイルアプリ開発でのAI活用状況と事例~
zozotech
PRO
8
5.6k
大体よく分かるscala.collection.immutable.HashMap ~ Compressed Hash-Array Mapped Prefix-tree (CHAMP) ~
matsu_chara
2
220
関数実行の裏側では何が起きているのか?
minop1205
1
690
Featured
See All Featured
How to Ace a Technical Interview
jacobian
280
24k
Building a Scalable Design System with Sketch
lauravandoore
463
34k
Docker and Python
trallard
47
3.7k
How to train your dragon (web standard)
notwaldorf
97
6.4k
Unsuck your backbone
ammeep
671
58k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.1k
Building a Modern Day E-commerce SEO Strategy
aleyda
45
8.3k
Balancing Empowerment & Direction
lara
5
800
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Stop Working from a Prison Cell
hatefulcrawdad
273
21k
The Language of Interfaces
destraynor
162
25k
Transcript
R-tistic Introduction to R and RStudio Lars Schoebitz
[email protected]
March
14, 2017
Getting started Download and install R Go to http://www.r-project.org Download
R for your operating system Install R Yes, even if you have already done that before
Getting started Download and install RStudio Go to https://www.rstudio.com Download
RStudio for your operating system Install RStudio Again, yes, even if you have already done that before
Getting started Open RStudio open RStudio
Getting started Open RStudio
Getting started Find the Console
Getting started Write your first line of code type print("hello
world") into the Console and hit ↵
Getting started Write your first line of code type print("hello
world") into the Console and hit ↵ print("hello world") ## [1] "hello world"
Getting started Write your first line of code type print("hello
world") into the Console and hit ↵ print("hello world") ## [1] "hello world" Congrats! You have just written your first R code.
Getting started Install packages type install.packages("tidyverse") into the Console this
installs the R packages: ggplot2, tibble, tidyr, readr, purrr and dplyr type library(tidyverse) into the Console and hit ↵ library(tidyverse)
Getting started Plot a graph type the code below into
the console and hit ↵ ggplot(mpg, aes(x = displ, y = hwy)) + geom_point() + theme_bw(base_size = 16)
Troubleshooting Write me an email If you had trouble with
any of the previous tasks, please write an email to:
[email protected]
Otherwise, see you at the class on Thursday at Eawag (Room Aqualino) on 16.03.2017 at 01:30 pm. Source of GIF: http://giphy.com/search/im-so-excited