|
@@ -14,8 +14,6 @@ highestRight <- max(DATA$AnkleRight.y)
|
|
|
VerschilLeft <- (lowestLeft - highestLeft)
|
|
VerschilLeft <- (lowestLeft - highestLeft)
|
|
|
VerschilRight <- (lowestRight - highestRight)
|
|
VerschilRight <- (lowestRight - highestRight)
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
plot(DATA$AnkleLeft.y,
|
|
plot(DATA$AnkleLeft.y,
|
|
|
type = "l",
|
|
type = "l",
|
|
|
ylab = "Hoogte...",
|
|
ylab = "Hoogte...",
|
|
@@ -29,3 +27,7 @@ plot(DATA$AnkleLeft.y,
|
|
|
# col = ifelse(DATA$AnkleRight.y > -1.1, "orange", "purple"),
|
|
# col = ifelse(DATA$AnkleRight.y > -1.1, "orange", "purple"),
|
|
|
# ylim = c(-1.20, -0.8)
|
|
# ylim = c(-1.20, -0.8)
|
|
|
#)
|
|
#)
|
|
|
|
|
+
|
|
|
|
|
+for(i in 1:nrow(DATA)){
|
|
|
|
|
+ points(i, DATA[i,]$AnkleLeft.y, col = color[DATA[i,]$state])
|
|
|
|
|
+}
|