b<-a[which(a[,4]-a[,3]>1000000),]
时间: 2024-01-05 10:03:33 浏览: 44
计算4的10000次方(C#)
4星 · 用户满意度95%
This code selects all rows from the data frame "a" where the difference between the values in the fourth and third column is greater than 1,000,000. The selected rows are then assigned to a new data frame called "b".
阅读全文