我在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剧本的新手,我们将不胜感激任何帮助/建议。
答案 0 :(得分:0)
你需要使用
dataset2 <- dataset[1:5,]
如果你想选择前5行。