0_r_lang_tip - smart1004/ReadTheDocs GitHub Wiki
dplyr
https://wsyang.com/2014/02/introduction-to-dplyr/
print(paste0("fibo(", n - 1, ") + fibo(", n - 2, ")"))
[R Programming] whichํจ์ ์ฌ์ฉํ๊ธฐ
whichํจ์๋ ์กฐ๊ฑด์ ๋ง๋ ๋ฐ์ดํฐ ์์ฒด๋ฅผ ์ ํํ๊ฑฐ๋ ์๋๋ฉด ๋ฐ์ดํฐ๋ค ์๋ ์์น ์ฃผ์๋ฅผ ์๊ณ ์ ํ ๋ ์ฌ์ฉํฉ๋๋ค.
#whichํจ์ ์ฌ์ฉํ๊ธฐ #iris์ ๋ฐ์ด์ ๊ตฌ์กฐ๋ฅผ ํ์ธํ๋ค. head(iris) str(iris) #์ ์ฒด ๋ฐ์ดํฐ๊ฐ 150์์ ํ์ธํ๋ค. length(iris$Sepal.Length) iris$Sepal.Length
#Sepal.Length๊ฐ 7์ด์์ธ ๋ฐ์ดํฐ๋ค ์์ฒด๋ฅผ ์ ํํ๋ค. iris$Sepal.Length[which(iris$Sepal.Length>7)] #Sepal.Length๊ฐ 7์ด์์ธ ๋ฐ์ดํฐ๋ค์ ์ฃผ์๋ฅผ ์ ํํ๋ค. which(iris$Sepal.Length>7)