Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Summary

Summary Programming 2020/2021( book chapters) (master accounting audit & control)

Rating
-
Sold
-
Pages
41
Uploaded on
21-01-2021
Written in
2020/2021

Summary related to the book chapters of this course. you will only find the highlights of the book chapters which makes it shorter than the book. every code is explained which will help you understand it better.

Institution
Course

Content preview

1. Introduction

1.1 what you will learn

Goal: give a solid foundation in the most important tools.
Needed tools look like this:




Using R(programming) :
1. import data into R.
2. Tidy data: storing in a consistent form (each column/ row is a variable/ observation.
3. Transform: narrowing in on observations of interest, creating new variables,
calculating summary statistics.
Wrangling= tidying + transforming
4. Visualization: (human) interpreting the data (questions)
5. Model: complementary tool to visualization. Use models to answer questions.
6. Communication: model and visualization doesn’t matter if you cannot communicate
your results to others.

Installing:
-download r
-download r studio
-install R packages: tidy verse: share common philosophy of data and R programming. In
console and then run.

install.packages("tidyverse")

You will not be able to use the functions, objects, and help files in a package until you load it
with library(). Once you have installed a package, you can load it with the library() function:

library(tidyverse)
tidyverse_update()

running code
> = prompt
Error message in English Sys.setenv(LANGUAGE = "en")

,Help
- Google
- Stackoverflow

- Prepare a minimal reproducible example/ reprex
1. Packages loaded at top of the script - tidyverse_update()
2. Include data(set) in a question  dput(mtcars) (run this, copy output in my
reproducible script mtcars <- paste
3. Code is easy to read to others


2. Introduction: data exploration
Data exploration is the art of looking at your data, rapidly generating hypotheses, quickly
testing them, then repeating again and again and again.

Visualization: make elegant and informative plots that help you understand data.
Data transformation: learn key verbs that allow to select important variables, filter key
observations, create new variables and compute summaries.

exploratory data analysis, you’ll combine visualisation and transformation with your
curiosity and scepticism to ask and answer interesting questions about data.

Modelling (later explained)


4. workflow: basics
Create new objects/ variables assignment statement: x < - …….
<- = ALT +-


Inspect an object by typing name  # = inspection results
Sequences  seq




+ = r is waiting for more input

, 6.Workflow: scripts

1. Running code
The key to using the script editor effectively is to memorise one of the most important
keyboard shortcuts: Cmd/Ctrl + Enter. This executes the current R expression in the console.
For example, take the code below. If your cursor is at █, pressing Cmd/Ctrl + Enter will run
the complete command that generates not_cancelled. It will also move the cursor to the
next statement (beginning with not_cancelled %>%). That makes it easy to run your
complete script by repeatedly pressing Cmd/Ctrl + Enter.

library(dplyr)
library(nycflights13)

not_cancelled <- flights %>%
filter(!is.na(dep_delay)█, !is.na(arr_delay))

not_cancelled %>%
group_by(year, month, day) %>%
summarise(mean = mean(dep_delay))

running the full expression: Ctrl + Shift + S.

I recommend that you always start your script with the packages that you need. That way, if
you share your code with others, they can easily see what packages they need to install.
Note, however, that you should never include install.packages() or setwd() in a script that
you share. It’s very antisocial to change settings on someone else’s computer!


8. Workflow: projects
1. What about your analysis is “real”, i.e. what will you save as your lasting record of
what happened? ( rscript is real)
2. Where does your analysis “live”?



Rstudio: not to preserve your wokspace between sessions

There is a great pair of keyboard shortcuts that will work together to make sure you’ve
captured the important parts of your code in the editor:

1. Press Cmd/Ctrl + Shift + F10 to restart RStudio.
2. Press Cmd/Ctrl + Shift + S to rerun the current script.

, Where does your analysis live?
R has a powerful notion of the working directory. This is where R looks for files that you ask
it to load, and where it will put any files that you ask it to save.
Current working directory: getwd():

Projects
R experts keep all the files associated with a project together — input data, R scripts,
analytical results, figures. This is such a wise and common practice that RStudio has built-in
support for this via projects.

Let’s make a project for you to use while you’re working through the rest of this book. Click
File > New Project, then:

Written for

Institution
Study
Course

Document information

Uploaded on
January 21, 2021
Number of pages
41
Written in
2020/2021
Type
SUMMARY

Subjects

$5.44
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF


Also available in package deal

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
SBerg96 Erasmus Universiteit Rotterdam
Follow You need to be logged in order to follow users or courses
Sold
43
Member since
5 year
Number of followers
28
Documents
11
Last sold
4 months ago

3.9

8 reviews

5
3
4
3
3
1
2
0
1
1

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions