-
Notifications
You must be signed in to change notification settings - Fork 0
/
kasitteet1.Rmd
38 lines (28 loc) · 1.33 KB
/
kasitteet1.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: "Käsitteet"
output: html_document
---
# Käsitteet
1.8.2018
Kerätään käsitteet yhteen dataframeen, taulukon tai taulkoiden luontia varten.
```{r kasitteet1}
consepts_fi <- c("massa", "profiili", "kontrasti", "modaliteetit", "attraktio",
"repulsio", "barysentrinen", "ekvivalenssi jakauman suhteen" )
consepts_en <- c("mass", "profile","contrast","modalities","attraction",
"repulsion","barycentric", "distributional equivalence" )
consepts_meaning <- c("massa, havaintojen lukumäärä", "profiili,jotain", "ääripäät",
"luokittelumuuttujan arvo tai arvot", "vetovoima", "työntövoima", "painotettu keskiarvo",
"jakauman ekvivalenssi on tärkein periaate")
# luodaan df concepts1
consepts1.df <- data_frame(consepts_fi,consepts_en,consepts_meaning)
#%>%
# arrange(Term) %>% # i.e. alphabetical order by Term
# kable(booktab = T) # booktab = T gives us a pretty APA-ish table
kable(consepts1.df, booktab=T)
```
Ed Berryn [esimerkin](https://eddjberry.netlify.com/post/writing-your-thesis-with-bookdown/) mukaan
data_frame(
Term = c("Working memory", "Short-term memory", "Long-term memory"),
Abbreviation = c("WM", "STM", "LTM")) %>%
arrange(Term) %>% # i.e. alphabetical order by Term
kable(booktab = T) # booktab = T gives us a pretty APA-ish table