【R語言】如何一次比較多個數字是否一樣 View Larger Image 利用 unique的方式。若所有數字都長樣的話,unique之後長度會等於1。 即可馬上比較出來是否多個數字是一樣的 Copy to ClipboardSee ?unique allTheSame <- c("red","red","red","red") notAllTheSame <- c(132,132,132,999) > length(unique(allTheSame)) == 1 [1] TRUE > length(unique(notAllTheSame)) == 1 [1] FALSE Views: 2 By mickey|2021-06-30T15:20:04+08:002019-08-27|R語言|0 Comments Share This Story, Choose Your Platform! FacebookTwitterRedditLinkedInWhatsAppTelegramTumblrPinterestVkXingEmail About the Author: mickey Related Posts 【R】Ubuntu + R+RSelenium 使用phantomjs Gallery 【R】Ubuntu + R+RSelenium 使用phantomjs 【R】getURL 若無指定encoding 會出現亂碼的問題 Gallery 【R】getURL 若無指定encoding 會出現亂碼的問題 【R Studio】Ubuntu 19.04 + R Studio + Webmin 安裝筆記 Gallery 【R Studio】Ubuntu 19.04 + R Studio + Webmin 安裝筆記 【rmarkdown】轉出word檔如何設定邊界 Gallery 【rmarkdown】轉出word檔如何設定邊界 Subscribe Notify of new follow-up comments new replies to my comments Label {} [+] Name* Email* Website Label {} [+] Name* Email* Website 0 Comments Oldest Newest Most Voted Inline Feedbacks View all comments