簡體   English   中英

從 R 中的數據集中選擇整數

[英]Selecting Integers From A Dataset in R

我有一個大型數據集,並且想要 select 僅來自Time (h)列的 integer 值,使用 dplyr 來實現此目的的代碼是什么? 數據集一部分的圖像

你可以試試:

max(data$`Time (h)`) # get the max value in the column
integers <- seq(1, 100, by=1) #replace the 100 value with the max
# then you'll have a list of all integers from 1 to whatever your max is

# find the integers in your data
integers_in_data <-
data %>%
filter(`Time (h)` %in% integers)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM