100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Samenvatting MLT01 - Statistiek R Studio $3.65   Add to cart

Summary

Samenvatting MLT01 - Statistiek R Studio

 9 views  0 purchase
  • Course
  • Institution

Veralgemeende scripts voor R Studio met uitleg die perfect gebruikt kunnen worden tijdens het open boek examen.

Preview 2 out of 7  pages

  • February 11, 2022
  • 7
  • 2021/2022
  • Summary
avatar-seller
Rstudio
# Eerst willen we controleren of we het pakket reeds geïnstalleerd hebben.

# In het schermpje rechtsonderaan zie je een tabblad "Packages". Hier kun je met het
vergrootglas rechtsboven in het schermpje zoeken naar het pakket.

# Indien het nog niet geïnstalleerd is dan kun je op de knop "Install" klikken

# En het gewenste pakket zoeken en installeren.

Pakket inladen in R
# Om een pakket te gebruiken moet je dit eerst inladen. Zoek bij "Packages" in het
schermpje onderaan naar het pakket dat je wilt gebruiken, klik daarna het hokje links
ervan aan.

Automatisch pakketten installeren en inladen.
# Laad de installed packages in 1 lijst

installed_packages <- installed.packages()

# Staat het pakket dat we willen installeren al geïnstalleerd? Sla dit op in een variable
'is_installed'

is_installed <- "openxlsx" %in% installed_packages

# Indien het pakket nog niet geïnstalleerd is

if (is_installed==FALSE){ install.packages("openxlsx")}

# Code die hier staat tussen {} wordt enkel uitgevoord wanneer het stukje tussen ()
waar is. In dit geval dus enkel als het pakket niet geïnstalleerd is.

# Laad het pakket in R

library(openxlsx)



#######################################################
#########################

### Inlezen van een dataset

#######################################################
#########################

Let er op: de functie 'read.xlsx' werkt enkel wanneer we het pakket 'openxlsx' van
hierboven hebben ingeladen.

# via Session > Set Working Directory > Choose Directory

# Een dataset in Excel formaat inlezen met read.xlsx

# Als de eerste lijn de kolom namen bevat (hoofding), kies je colNames = TRUE

# Als de data op een andere tabblad staat kun je ook sheet = aanpassen naar het
tabblad

naam_die_je_wil_geven <- read.xlsx("naam.xlsx",colNames = TRUE, sheet = 1)

# De namen van de kolommen opvragen

, colnames(naam)

# Hoeveel observaties zijn er en zijn het kwantitatieve of kwalitatieve resultaten?

str(naam)



#######################################################
#########################

### Basis statistiek

#######################################################
#########################

# standaard deviatie

sd(naam$kolomnaam)

# gemiddelde

mean(naam$kolomnaam)

# maximum waarde

max(naam$kolomnaam)

# minimum waarde

min(naam$kolomnaam)

# min, max, mediaan, gemiddelde en 1ste en 3de kwartiel (Qu.)

summary(naam$kolomnaam)



#######################################################
#########################

### Een staafdiagram (barplot) maken van een kwalitatieve variabele

#######################################################
#########################

# Maak eerst een frequentie tabel

freq.tabel <- table(naam$kolomnaam)

# De frequentie tabel zien

freq.tabel

# Gebruik deze frequentie tabel om een staafdiagram te maken

barplot(freq.tabel,

main = "naam grafiek",

names = c("naam staaf","naam staaf"))

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller latoyaloosveld. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $3.65. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

58426 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$3.65
  • (0)
  Add to cart