从全局环境中选择数据帧并将其导入列表

时间:2016-07-08 09:43:54

标签: r list dataframe import

我想选择并导入ca.从我的全局环境到列表的30个数据帧。 我的所有数据帧都以“.AM”结尾,因此应该很容易导入它们,但我对R来说还是个新手。

我试过了:

mylist <- list(pattern = "*.AM")

但它不起作用。

3 个答案:

答案 0 :(得分:3)

我们可以使用//Delegate Method cellForItemAtIndexPath func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { //Get a reference to our storyboard cell let cell = collectionView.dequeueReusableCellWithReuseIdentifier( "pickSomecell", forIndexPath: indexPath) as! pickSomeGridViewController //Show Images in grid view cell.cellImage.image = self.arrAllOriginalImages[indexPath.row] as? UIImage cell.toggleSelected() //return cell. return cell } 返回mget中的数据集。

list

答案 1 :(得分:1)

您正在寻找

mylist <- ls(pattern = ".AM")

返回mylist作为匹配对象名称的向量

答案 2 :(得分:0)

尝试将工作目录设置为保存文件的位置

setwd("C:\\user\\files")

然后创建.AM数据帧列表

mylist = list.files(pattern="*.AM") 

我想这应该有用吗?