-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdefine_configuration.Rmd
247 lines (114 loc) · 4.48 KB
/
define_configuration.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
---
title: "Untitled"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r cars}
summary(cars)
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
```{r}
.root <- rprojroot::is_rstudio_project$make_fix_file()
xfun::download_file("https://www.dropbox.com/s/2rryka3cprtgfok/heritageDataRevised.Rdata?dl=1", mode="wb")
load("heritageDataRevised.Rdata")
```
```{r}
user$sessionData$game$puzzle_guess <-
append(
user$session$game$puzzle_guess,
list(game_result)
)
user <- list( sessionData= list( game= list(puzzle_guess=user$sessionData$game$puzzle_guess,
filtered_data = user$sessionData$filtered_data ,
county_chosen = user$sessionData$county_chosen ),
session = list( game = list( puzzle_guess = ),
),
checkINs= append(user$checkIns, list(checkInResult)),
visits=append(urser$visits, newTraces)
) )
## define complete structure
heritage<-
list(
data = heritageData,
show_county = heritage$show_county(),
filter = list(
countyChosen = heritage$filter$countyChosen( )
),
game = list(
puzzle_guess = function(){}
),
validate_checkIn(returnedGPS) = checkInResult ,
track(list_tracks) = newTraces ,
)
##
heritage$show_county <- function(){
}
heritage$filter$countyChosen <-
heritage$game$puzzle_guess <-
```
```{r}
# 選擇城市後 --> 輸出選擇城市的古蹟
library(stringr)
heritage$show_county <- function(chosen_county){
final_result <- list()
for (i in seq_along(heritageData$belongCity)){
if (str_detect(heritageData$belongCity[[i]],pattern=chosen_county)){
heritageData$caseName[[i]] -> final_result[[i]]
final_result <- unlist(final_result)
final_result <- final_result[!is.na(final_result)]
}
}
return (final_result)
}
```
```{r}
# helper
heritage$show_county("臺北市")
```
```{r}
# 再將 heritage$show_country("城市") 的 caseID 取出 --> 儲存至user$sessionData$filtered_data
heritage$filter$countyChosen<- function( data ){
caseId <- list()
for (i in seq_along(data)){
caseId[[i]]<- heritageData$caseId[[i]]
}
return(caseId)
}
```
```{r}
heritage$show_county("臺北市") -> user$sessionData$county_chosen
heritage$filter$countyChosen(user$sessionData$county_chosen) -> user$sessionData$filtered_data
```
```{r}
user$sessionData$filtered_data
```
```{r}
heritage$filter$countychosen<- function(chosen_county){
final_IDresult <- list()
for (i in seq_along(heritageData$belongCity)){
if (str_detect(heritageData$belongCity[[i]],pattern=chosen_county)){
heritageData$caseId[[i]] -> final_IDresult[[i]]
final_IDresult <- unlist( final_IDresult)
final_IDresult <- final_IDresult[!is.na(final_IDresult)]
}
}
return(final_IDresult)
}
heritage$filter$countychosen("臺北市")
```
```{r}
# show by county --------------------------------------------
# App function: user wants to zoom into map that shows only the point of interests belong to certain county
# when select choose by county on APP, it calls
heritage$show_county() -> user$sessionData$county_chosen -> save_county_chosen
```