Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
taehyounpark committed Mar 31, 2024
1 parent f6ecf23 commit 74f29ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/pages/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,14 +248,14 @@ Both approaches can (and should) be used in a dataflow for full control over the
auto x = ds.vary(
dataset::column<double>("x_nom"),
{{"shift_x","x_shifted"}, {"smear_x", "x_smeared"}}
); // qty::lazy<column::fixed<double>>::varied
// (column::fixed<dobule> is the concrete type)
);

// constants are varied by alternate values
auto y = df.vary(
column::constant(true),
{{"no", false}}
);
); // qty::lazy<column::fixed<double>>::varied
// (column::fixed<dobule> is the concrete type)

// expressions are varied by alternate expression and input columns
auto x_pm_y = df.vary(
Expand Down

0 comments on commit 74f29ae

Please sign in to comment.