Smyčka je příkaz, který běží, dokud není splněna podmínka. Syntaxe smyčky while je následující:
while (condition) {Exp}
Poznámka : Nezapomeňte v určitém okamžiku napsat podmínku uzavření, jinak bude smyčka pokračovat neomezeně dlouho.
Příklad 1:
Pojďme si projít velmi jednoduchým příkladem, abychom porozuměli pojmu smyčky while. Vytvoříte smyčku a po každém spuštění přidáte 1 do uložené proměnné. Musíte uzavřít smyčku, proto jsme výslovně řekli R, aby zastavil smyčku, když proměnná dosáhla 10.
Poznámka : Pokud chcete vidět aktuální hodnotu smyčky, musíte zabalit proměnnou uvnitř funkce print ().
#Create a variable with value 1begin <- 1#Create the loopwhile (begin <= 10){#See which we arecat('This is loop number',begin)#add 1 to the variable begin after each loopbegin <- begin+1print(begin)}
Výstup:
## This is loop number 1[1] 2## This is loop number 2[1] 3## This is loop number 3[1] 4## This is loop number 4[1] 5## This is loop number 5[1] 6## This is loop number 6[1] 7## This is loop number 7[1] 8## This is loop number 8[1] 9## This is loop number 9[1] 10## This is loop number 10[1] 11
Příklad 2:
Koupili jste si akci za cenu 50 dolarů. Pokud cena klesne pod 45, chceme ji zkrátit. Jinak to necháme v našem portfoliu. Cena se může pohybovat mezi -10 až +10 kolem 50 po každé smyčce. Kód můžete napsat následovně:
set.seed(123)# Set variable stock and pricestock <- 50price <- 50# Loop variable counts the number of loopsloop <- 1# Set the while statementwhile (price > 45){# Create a random price between 40 and 60price <- stock + sample(-10:10, 1)# Count the number of looploop = loop +1# Print the number of loopprint(loop)}
Výstup:
## [1] 2## [1] 3## [1] 4## [1] 5## [1] 6## [1] 7
cat('it took',loop,'loop before we short the price. The lowest price is',price)
Výstup:
## it took 7 loop before we short the price.The lowest price is 40