Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
taehyounpark committed Mar 25, 2024
1 parent c840294 commit a1a7dbc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 109 deletions.
108 changes: 0 additions & 108 deletions docs/examples/hww.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/pages/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ auto defn = df.vary(
// - different data types (double, int, float)
auto z_nom = ds.read(dataset::column<double>("z"));
auto z_fixed = df.define(column::constant<int>(100.0));
auto z_half = df.define([](float z){return z*0.5;}, z_nom);
auto z_half = df.define(column::expression([](float z){return z*0.5;}), z_nom);

// as long as their output values are compatible, any set of columns can be used
auto z = systematic::vary(
Expand Down

0 comments on commit a1a7dbc

Please sign in to comment.