如何直接使用 R 脚本在 spotfire 中使用数据 table 创建数据框?
How to create data frame using data table in spotfire using R script directly?
我在 spotfire 中有一个名为 'sample' 的 table,其中包含 col1、col2、col3、col4、.....、colm 等列。我需要使用 R 脚本保存为数据框,因为我正在使用以下语句:
tbdf <- data.frame(tbinput)
其中 'tbinput' 是我的 table 类型的输入参数并附有 table 'sample'。我需要添加什么吗?
输入参数数据表作为数据帧读入 TERR。
您可以通过将文档 属性 outparam 设置为:
来验证此行为
outparam <- class(tbinput)
在文本区域显示属性为'label'表明'data.frame'是tbinput
的class
我在 spotfire 中有一个名为 'sample' 的 table,其中包含 col1、col2、col3、col4、.....、colm 等列。我需要使用 R 脚本保存为数据框,因为我正在使用以下语句:
tbdf <- data.frame(tbinput)
其中 'tbinput' 是我的 table 类型的输入参数并附有 table 'sample'。我需要添加什么吗?
输入参数数据表作为数据帧读入 TERR。
您可以通过将文档 属性 outparam 设置为:
来验证此行为outparam <- class(tbinput)
在文本区域显示属性为'label'表明'data.frame'是tbinput
的class