问题标签 [rhandsontable]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
175 浏览

r - 将 RShiny 中的用户内容保存为指定的命名变量

我正在尝试为媒体数据构建一个简单的数据输入表,用户也可以添加数据并将其保存在所需的位置。目前,每当我保存场景时,它都会将变量保存为数据,我认为这是由于保存函数中的参数。我希望将变量保存为 input$name 值,但我一生都无法弄清楚如何。我试过使用 assign 等,但无济于事。对此的任何帮助将不胜感激。

谢谢!

0 投票
1 回答
92 浏览

datatable - how to add new/separate datatables after clicking actionbutton

I need help writing a shiny app that will spit out a separate datatable after entering into each respective input and clicking the actionbutton. I got the app to simply output to the datatable, but it will overwrite upon a new entry. I checked the reference section of R Shiny and it seems I need to use insertUI() but I don't really understand Shiny very well to figure it out. Please help. Thanks.

enter image description here

I want the app to minic this excel spreadsheet, notice how the amount of columns differ for each table (submission).

0 投票
2 回答
2018 浏览

shiny - 如何在闪亮的rhandsontable中使列标题字母加粗

如何在r的闪亮包中使rhandsontable中的列标题粗体文本?

我有一个闪亮的 rhandsontable,我想让标题中的文本加粗。我该怎么做?有人知道吗?

0 投票
1 回答
965 浏览

r - 在 Shiny 中使用 rhandsontable 时出错

rhandsontable在一个闪亮的应用程序中观察到了一些奇怪的行为。在这个简单的示例中,如果发生某些事件,我将 a 分配data.frame给一个reactiveValues元素。然后数据显示在rhandsontable. 但是,当我更改表的某些条目时,函数hot_to_r失败并显示:seq.default 中的错误:参数“length.out”的长度必须为 1

奇怪的是,该错误仅在我使用时发生iris,但在我使用时不会发生iris[1:50, ],这应该是相同的。有人有想法,如何解决这个问题?

(在单击之前values$data还有另一个错误。我知道这一点,但这与问题无关。)NULLactionButton

0 投票
1 回答
445 浏览

r - 使用闪亮 R 工作室中的操作按钮填充 rhandsontable 对象的缺失值

我有以下代码。考虑到计算值的关系,我想在单击“开始”按钮后用粗体数字(或者可能是红色)填充 rhandsontable 对象的缺失值

datacopy[16, "wt"]= datacopy[16, "mpg"] + datacopy[16, "cyl"]

所以输出表是 rhandsontable 没有缺失值(缺失值被替换)。有谁知道我该怎么做?非常感谢你。:)

0 投票
1 回答
1283 浏览

shiny - Reactive/Calculate Columns in rhandsontable in shiny- rstudio

I am trying to add a custom validation to the following interactive table. What I am trying to do is as follows. The table contains three variables namely mpg,cyl and disp. Suppose I edit the mpg value of the first row. Then once I press the enter button, disp value of the 1st row should be automatically changed calculated as disp=mpg/cyl. Here mpg value being the new value I edited. Likewise if I edit cyl in a particular row again disp of that particular row should be changed automatically evaluated as disp=mpg/cyl. Moreover if I change disp value of a particular row, cyl of that particular row should be changed automatically calculated as mpg/cyl. I am trying to figure it out a way of doing this.

0 投票
1 回答
1737 浏览

r - R 使用闪亮、rhandson 和 DT 更改列类型

我有一个闪亮的应用程序,用户可以将他的 csv 上传到user_table() 响应式表达式中,然后使用 DT 显示给用户renderDataTable();还有 RHandsontable 的列类型来自user_table(). 用户应该能够更改 RHandsontable 中的值并单击“应用”按钮,以将更改应用到他的表。(即有一个“数字”列,他想将其更改为“字符”)。以下是为用户呈现 DT 的方式:

以下是handsontable的工作原理:

现在我正在尝试执行以下操作:单击应用按钮后,使用用户更改的列类型创建一个新表,尽管我不确定应该如何正确完成。我应该使用另一个反应式表达来做到这一点吗?observeEvent 是用于按钮 onclick 事件的正确方法吗?如果有不清楚的地方,请询问。提前致谢!

编辑:我在浏览了一段时间后想出了这个功能:

并将其与观察事件一起使用:

虽然,Rhandsontable 没有对用户输入做出反应;它只是将列类型更改为与它们已经相同的类型。任何解决方法?

0 投票
0 回答
74 浏览

r - R编程/闪亮/从表中读取值

我是编程新手,我正在尝试学习 R 编程。

我使用 rhandsontable 库在 R 中制作了一张表格。

我想知道是否可以从 rhandsontable 生成的表中读取用户的值并处理用户提供的值?

请提供一些示例在此先感谢。

0 投票
1 回答
628 浏览

r - rhandsontable 自动完成依赖列

以下示例应用程序以用户必须填写的空表开始。我想在他可以为 Nation 和 City 列选择的值中添加一些依赖项,因此,例如,如果他在单击 City 列时选择 Nation=Italy,则只会出现 Milan 和 Rome;反之亦然,如果他首先选择米兰,则只有意大利应该出现在自动完成列表中。建议?谢谢

0 投票
1 回答
1564 浏览

r - r shiny:从另一个 rhandsontable 更新 rhandsontable

我希望你很好。我正在尝试创建一个闪亮的仪表板,使用户能够从另一个更新一个 rhandsontable。我的代码如下:

每当我运行代码时,我都会收到以下错误:

我这辈子都做不到!任何帮助将不胜感激!

干杯,

哈利