Description Usage Arguments Details Value Examples
Funkcja generuje losowe dane natezenia ruchu i dolacza do nich wybrany segment pojazdow i losowo dobrane parametry zuzycia paliwa i technologii silnika.
1 2 3 4 | eeval_input(
segm = c("Mini", "Small", "Medium", "Large-SUV-Executive"),
n_spl = 300
)
|
segm |
wektor wartosci Segment dla odpowiadajacej pozycji Category. |
n_spl |
liczba losowo generowanych danych natezenia ruchu |
W celu uzyskania dostepnych wartosci Segment w danej Category zastosuj np.:
wskazniki %>%
filter(Category == "Buses") %>%
select(Segment) %>% unique()
data.frame
1 2 3 4 5 6 7 8 9 | #Uruchomienie funkcji z parametrami domyslnymi
input2 <- eeval_input()
# Wygenerowanie innych danych
input3 <- eeval_input(segm = c("Urban Buses Midi <=15 t",
"Urban Buses Standard 15 - 18 t",
"Urban Buses Articulated >18 t",
"Coaches Standard <=18 t"),
n_spl = 200)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.