我是 R 的新手,我正在尝试做一些非常简单的事情。我已经加载了一个包含四列的 txt 文件,现在我想获得第二列的最小值。这是我拥有的代码:
## Choose the directory of the file
setwd("//Users//dkar//Desktop")
## Read the txt file
data<-read.table("export_v2.txt",sep="",header=T)
str(data)
## this command gives me the minimum for all 4 columns!!
a<-apply(data,2,min)
实际上,如果我想做这样的事情: min (data(:,2)). 但我不知道如何在 R 中做到这一点。有什么帮助吗?