这是我的代码,我只想获取第2174行作为输出。 请注意,第一行的输出将始终被忽略,因此我只关心第二行,只看该行的编号,在这种情况下为:2174
firebase.initializeApp({
databaseURL: <my db url here>,
// Set your projectId directly here in options:
projectId: <your-projectId-here>
});
答案 0 :(得分:2)
您的min
调用导致多行共享最小值,这就是为什么显示多行的原因。
如果有多个与您的min
通话相匹配的值,您是否总是只想最后一行?如果是这样,则可以将其包装在tail()
中:
tail(e[which(e$obs_pval == min(e$obs_pval)),], 1)
仅获取索引:
tail(which(e$obs_pval == min(e$obs_pval)), 1)
或:
which(e$obs_pval == min(e$obs_pval))[length(which(e$obs_pval == min(e$obs_pval)))]