process-mining
latest
false
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。 新发布内容的本地化可能需要 1-2 周的时间才能完成。
UiPath logo, featuring letters U and I in white

Process Mining

上次更新日期 2025年4月17日

为自动化潜力配置字段

Event_costEvent_processing_time

用于计算自动化潜力的Event_costEvent_processing_time不属于输入数据的一部分。 您可以在 “使用 SQL 语句的数据转换”中为事件日志配置这些字段。
以下代码块显示了用于定义Event_cost示例 SQL 查询。
 case
            when tableA."Activity" = 'ActivityA'
                then {{ pm_utils.to_double(20.00) }}
            when tableA."Activity" = 'ActivityB'
                then {{ pm_utils.to_double(10.00) }}
            when tableA."Activity" = 'ActivityC'
                then {{ pm_utils.to_double(5.00) }}
            when tableA."Activity" = 'ActivityD'
                then {{ pm_utils.to_double(0) }}
     end as "Event_cost"case
            when tableA."Activity" = 'ActivityA'
                then {{ pm_utils.to_double(20.00) }}
            when tableA."Activity" = 'ActivityB'
                then {{ pm_utils.to_double(10.00) }}
            when tableA."Activity" = 'ActivityC'
                then {{ pm_utils.to_double(5.00) }}
            when tableA."Activity" = 'ActivityD'
                then {{ pm_utils.to_double(0) }}
     end as "Event_cost"
以下代码块显示了用于定义Processing_time示例 SQL 查询。
 case
            when tableA."Activity" = 'ActivityA'
                then 5
            when tableA."Activity" = 'ActivityB'
                then 12
            when tableA."Activity" = 'ActivityC'
                then 30
            when tableA."Activity" = 'ActivityD'
                then 4
     end as "Event_processing_time"case
            when tableA."Activity" = 'ActivityA'
                then 5
            when tableA."Activity" = 'ActivityB'
                then 12
            when tableA."Activity" = 'ActivityC'
                then 30
            when tableA."Activity" = 'ActivityD'
                then 4
     end as "Event_processing_time"

使用 dbt 种子提供数据输入

对于数据转换的seeds\文件夹中仍包含Automation_estimates_raw.csv种子文件的流程应用程序,您可以使用此文件提供输入数据,以用于“自动化潜力”仪表板中的计算。 对于所有活动,您可以提供Event_processing_time (以毫秒为单位)和Event_cost 。 下图显示了一个示例。
种子文件示例
备注:

如果使用 Automation_estimates_raw.csv 种子文件提供了 event_processing_time ,但未填写所有活动的,则默认情况下,剩余活动的“手动处理时间” 为“NULL”。考虑使用平均吞吐量时间作为这些活动的event_Processing_time

备注:
如果您使用应用程序模板在其中提供event_log作为输入,则还可以将event_processing_time指定为该文件中的列。 在事件级别指定的值将优先于使用种子文件为每个活动指定的值。

此页面有帮助吗?

获取您需要的帮助
了解 RPA - 自动化课程
UiPath Community 论坛
Uipath Logo White
© 2005-2025 UiPath。保留所有权利。