如何在R脚本中从dataset1创建子集(dataset2)

时间:2016-09-30 07:05:24

标签: r subset azure-machine-learning-studio

我在AzureML R脚本中有一个数据集1

<form class="form-home"> <input type="text" ng-model="newUser.name" placeholder="Full Name" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Full Name'" /> <input type="text" ng-model="newUser.tagline" placeholder="Tagline" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Tagline'"> <input type="text" ng-model="newUser.profileUrl" placeholder="Profile Image Url" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Profile Image Url'"> <textarea rows="15" cols="50" ng-model="newUser.bio" placeholder="Bio" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Bio'"> </textarea> <button type="submit" ng-click="createUser(newUser, event)" > Save Changes </button> </form>

如何创建具有前5行数据集1的数据集1的子集?

我尝试使用dataset1 <- maml.mapInputPort(1),但它无效。我怎么能这样做?

那么在R脚本中对数据集进行排序的最佳方法是什么?

我是R剧本的新手,我们将不胜感激任何帮助/建议。

1 个答案:

答案 0 :(得分:0)

你需要使用

dataset2 <- dataset[1:5,] 

如果你想选择前5行。