读取 CSV 文件的最后一行并在 Knime 中提取一个值

发布于 2025-01-13 00:24:09 字数 483 浏览 1 评论 0原文

我正在 Knime 上的工作流程中工作,并且我有一个 excel writer 节点作为工作流程的最终节点。我需要读取此文件并获取并存储一个特定列(时间)的最后一个值。有了这些数据,我需要输入另一个时间节点,以更新我的 API 链接以获取新请求。

总而言之,我需要从 knime 中的 excel 文件的最后一行提取特定信息。

我的问题是:如何读取该文件并从我的工作表中获取该值?然后,如何更新时间循环来刷新数据以在我的 API 链接中插入当天?< img src="https://i.sstatic.net/oZRyB.png" alt="在此处输入图像描述">

UDDATE->我的问题是如何在连接数据库中始终过滤过去 90 天的数据。我在这个文件中有两列带有日期。我只需要维护自当天以来的最后 90 天。

I am working in a workflow on Knime, and I have an excel writer node as a final node of my workflow. I need to read this file and get and store the last value of one specific column (time). And with this data, I need to input in another time node, to update my API link to get a new request.

To summarize I need to extract specific information from the last line of my excel file in knime.

My question is: How can I read this file and get this value from my sheet? And then, how can update a time loop to refresh the data for inserting the current day in my API link?enter image description here

UDDATE-> My question is how can I Filter always the last 90 days in my concatenate database. I have two columns in this file with dates. And I need to maintain just the last 90 days since the current day.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

口干舌燥 2025-01-20 00:24:09

要读取 Excel 文件,请使用 Excel Reader 节点。

获取表最后一行的最简单方法(假设您的日期列对该表的每一行都有一个值?)可能是使用 基于规则的行过滤器 以及表达式

$ROWINDEX$ = $ROWCOUNT$ => TRUE

现在您有一个单行表,其中包含 Excel 工作表最后一行的值。为了进一步提供帮助,我们需要了解更新时间循环以刷新在我的 API 链接中插入当天的日期的含义。您可以用当前 KNIME 代码的屏幕截图更新您的问题吗?

To read an Excel file, use the Excel Reader node.

The simplest way to get the last row of a table (assuming your date column has a value for every row of this table?) is probably to use a Rule-based Row Filter with the expression

$ROWINDEX$ = $ROWCOUNT$ => TRUE

Now you have a one-row table with the values from the last line of the Excel sheet. To help further we need to understand what you mean by update a time loop to refresh the date for inserting the current day in my API link. Can you update your question with a screenshot of your current KNIME code?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文