-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAnalysemodelle.R
More file actions
37 lines (32 loc) · 834 Bytes
/
Analysemodelle.R
File metadata and controls
37 lines (32 loc) · 834 Bytes
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
# Forschungsfrage: Wie stark ist der Einfluss der unabhängigen Variable auf die abhängige Variable?
# Hypothese: Je mehr [weniger] UV, desto mehr [weniger] AV
# Analysemodell
DiagrammeR::grViz("
digraph {
graph [layout = circo]
node [shape = circle]
A [label = 'UV']
B [label = 'AV']
edge []
A -> B
}
")
# Forschungsfrage: Welche Variable hat den stärksten Einfluss auf die Variable Volume?
# 1. Hypothese: Je mehr Girth [Height], desto mehr Height [Girth] (ungerichtete Hypothese)
# 2. Hypothese: Je mehr Height, desto mehr Volume
# 3. Hypothese: Je mehr Girth, desto mehr Volume
# Analysemodell
DiagrammeR::grViz("
digraph {
graph [layout = circo]
node [shape = circle]
A [label = 'Girth']
B [label = 'Height']
C [label = 'Volume']
edge []
A -> C
A -> B
B -> A
B -> C
}
")