Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/guides/signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ This example specifies that the `random_signal()` should evaluate once with a th
MODEL (
name example.signal_model,
kind FULL,
signals [
signals (
random_signal(threshold := 0.5), # specify threshold value
]
)
);

SELECT 1
Expand Down Expand Up @@ -108,9 +108,9 @@ MODEL (
time_column ds,
),
start '2 week ago',
signals [
signals (
one_week_ago(),
]
)
);


Expand Down