问题标签 [lead]

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 回答
113 浏览

postgresql - WHERE 子句用于不选择时间戳为 50 毫秒的行?

我有这样一张桌子的一部分:

我想实现这一点:

原始表中的第二行已被删除,因为它在它之前或之后的时间戳的 50 毫秒内。重要的是仅在 Source = 'Poll' 时删除行。

不确定如何使用 WHERE 子句来实现这一点?

提前感谢您的帮助。

0 投票
1 回答
500 浏览

sql - SQL 使用范围选择 LAG 和 LEAD 之间的项目

是否可以使用 Lag 从另一个表中选择和汇总项目并从另一个表中领先,范围如下。

tblEmployee 包含员工及其出生日期

下一个表是根据用户输入的年龄创建的临时表,例如“20;30;50;60”在下面生成一个临时表,使用函数拆分

温度表

所需的输出如下,尽管列 Age Categories 可以在 C# 的数据表中重命名。l 需要总列在范围上是准确的。

0 投票
2 回答
93 浏览

r - how to put a value in the first row of a group_by in R

I have a lot of different e-cars (car1 ... carN) with a state of charge (SOC) at the beginning ot a trip (start_trip) and the end (end_trip). Between to trips a car is loaded, to a maximum level. I know the charge capacity for the loading of a batterie (~0.35 /minute) an the needed capacity for every kilometer (0.22 / kilometer). Between two trips we have some minutes to load and during a trip the capacity decreases.

I want to estimate the necessary time between to trips to fulfill the need in 99% of the bookings, if i assume to deliver the same service with e-cars in the future.

I have a list of nearly 1 million bookings with combustion vehicles. carN starttime stoptime drivenkm ...

I calculate the possible time between the end of a trip and the start of the last use with loadtime = starttime - lag(stoptime) so i know, what`s the SOC_S at the start of a trip.

I calculate the needed capacity for a trip and substract it from SOC_S. So i get the SOC_E at the end of a trip.

Now i want to take in account, that a battery is not really empty at the end of a trip. So, the chargestate is SOC_E from the last trip + possible load between trips.

Now i have some problems:

  1. the maximum load is 22 kWh. So the load is the max("loaded charge by time" or "maxLoad". The first is a vector and the secon a constant number. max(a, b) don`t work.

  2. I want to set the first SOC_S for the first booking for every car to 22 kWh. It starts fully loaded. How to put a value in a special column of the first row of a group_by in R for evvery car?

  3. How can I calculate a value for needed loadtime to fulfill 99% of the use? Something like teh solver in excel?

    /li>

This code don`t work. The problem are

  1. How can i use the new variables? There have colnames like this: "preTime <- (Nutzungsbeginn - lag(Nutzungsende))/60"

  2. The last two seems to come to an irregular loop.

Regards

Ruediger

0 投票
1 回答
51 浏览

r - 使用 data.table 对多列进行滚动自定义计算

我正在使用以下代码对列进行滚动计算

如何使用 sdcols 为列 x1 到 x4 实现相同的结果,创建新列 y1 到 y4

0 投票
1 回答
455 浏览

java - facebook 活动广告的潜在客户列表总是返回空

我正在创建一个管理,用于查找与我的企业帐户关联的 Facebook 活动的展示次数、点击次数和潜在客户。对于印象和点击,没有问题,但我找不到线索。这是函数的代码(取自 Facebook 开发人员),该函数试图计算链接到 Facebook 活动的每个广告的领先率。System Out 打印的值是:

大小:0,列表:[]

0 投票
1 回答
321 浏览

sql - SQL Lead/Lag 智能解决方案

我在一家仍在使用 MS SQL Server 2008 R2 的公司工作,所以我不能使用 Lead/Lag Functions。

我知道带有分区等的子查询的一般解决方法来复制它的作用,但我正在研究一个需要使用大量领先和滞后的项目。

因此,我的问题是,有没有人想出一种聪明的方法来复制可以从 UDF 等调用的引导函数的作用,从而使这个过程更容易?

0 投票
1 回答
154 浏览

r - 按天滞后变量并在此过程中创建新行

我试图按天滞后变量,但许多人在前一天没有观察到。所以我需要在这个过程中添加一个额外的行。Dplyr 让我很接近,但我需要一种方法来在这个过程中添加一个新行并且有数千个案例。任何想法将不胜感激。

使用 dplyr 让我在这里:

但我需要到达这里:

0 投票
7 回答
6092 浏览

facebook - Facebook 页面 Leadgen Webhook 返回错误 102 服务器故障

Facebook 页面前导 webhook 不适用于我的页面和关联的应用程序。

如果我使用测试工具测试我设置的 webhook并单击“跟踪状态”按钮,则发出的实时更新对象与此错误相关联:102 Server failure

我的 Facebook 设置包括:

页面、广告帐户和应用程序都属于业务,并且应用程序似乎正确订阅了页面:它在图形 api 调用的结果中列出/<page-id>/subscribed-apps

有谁知道我可能会错过什么?

非常感谢。

0 投票
2 回答
1061 浏览

sql - LAG 有效,LEAD 在同一语句中返回 1

我对始终返回 ID= 1的 LEAD 感到困惑,它甚至不是表中的 ID(ID 从 ~18k 开始),而不是下一条记录的有效 ID。NULL 值是它们应该在的位置,它只是应该包含有效 ID 的行。具有相同语法的 LAG 按预期工作,返回正确的值。当我注释掉 LAG 时,LEAD 甚至不起作用(正确)。顺便说一句,我从我的其他脚本中复制了代码(并且只是更改了表和列名),它工作正常。

这是使用 SELECT 的结果示例(请参阅最后一列中的 1 值):

我担心这可能是我看不到的一些愚蠢的拼写错误。或者 LAG 和 LEAD 有什么问题吗?

0 投票
1 回答
8343 浏览

hive - Hive 中的主要功能

我试图在特定的“name2”之后检索下一个“name1”。例如,“name2”中“complete2”之后的下一个“name1”是“init3”。这是我使用的查询,但它返回 null。