R dataframe 遗忘, which 矩阵搜索

本文介绍如何在R语言中使用DataFrame存储数据表格。通过示例展示了创建DataFrame的方法及如何进行基本操作,如将DataFrame转换为矩阵并查找特定条件下的元素。

data frame is used for storing data tables. It is a list of vectors of equal length. For example, the following variable df is a data frame containing three vectors n, s, b.

n = c(2, 3, 5) 

s = c("aa", "bb", "cc") 

b = c(TRUE, FALSE, TRUE) 

df = data.frame(n, s, b) 
 
a <- data.frame(x = c(1,2,3), y = c(4,5,6), z = c(7,8,9))
 
x <- as.matrix(a)
idx <- which(x > 5, arr.ind=TRUE)

转载于:https://www.cnblogs.com/xinping-study/p/7234898.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值