私はRが初めてで、本当に簡単なことをしようとしています。4列のtxtファイルをロードしましたが、2番目の列の最小値を取得したいと思います。これは私が持っているコードです:
## 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でそれを行う方法がわかりません。何か助けはありますか?