miller/doc/content-for-reference-dsl.html
2017-03-13 21:12:30 -04:00

2749 lines
85 KiB
HTML

POKI_PUT_TOC_HERE
<p/>
<button style="font-weight:bold;color:maroon;border:0" onclick="expand_all();" href="javascript:;">Expand all sections</button>
<button style="font-weight:bold;color:maroon;border:0" onclick="collapse_all();" href="javascript:;">Collapse all sections</button>
<!-- ================================================================ -->
<h1>Overview</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_overview');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_overview" style="display: block">
<p/> Here&rsquo;s comparison of verbs and <tt>put</tt>/<tt>filter</tt> DSL expressions:
<table border=1>
<tr> <td>
Example:
POKI_RUN_COMMAND{{mlr stats1 -a sum -f x -g a data/small}}HERE
<p/>
<ul>
<li/> Verbs are coded in C
<li/> They run a bit faster
<li/> They take fewer keystrokes
<li/> There is less to learn
<li/> Their customization is limited to each verb&rsquo;s options
</ul>
</td>
<td>
Example:
POKI_RUN_COMMAND{{mlr put -q '@x_sum[$a] += $x; end{emit @x_sum, "a"}' data/small}}HERE
<ul>
<li/> You get to write your own DSL expressions
<li/> They run a bit slower
<li/> They take more keystrokes
<li/> There is more to learn
<li/> They are highly customizable
</ul>
</td> </tr>
</table>
<p/>Please see <a href="reference-dsl-verbs.html">here</a> for information on
verbs other than <tt>put</tt> and <tt>filter</tt>.
<p/>
The essential usages of <tt>mlr filter</tt> and <tt>mlr put</tt> are for
record-selection and record-updating expressions, respectively. For example, given the following input data:
POKI_RUN_COMMAND{{cat data/small}}HERE
<p/> you might retain only the records whose <tt>a</tt> field has value <tt>eks</tt>:
POKI_RUN_COMMAND{{mlr filter '$a == "eks"' data/small}}HERE
<p/> or you might add a new field which is a function of existing fields:
POKI_RUN_COMMAND{{mlr put '$ab = $a . "_" . $b ' data/small}}HERE
<p/>The two verbs <tt>mlr filter</tt> and <tt>mlr put</tt> are essentially the
same. The only differences are:
<ul>
<li/> Expressions sent to <tt>mlr filter</tt> must end with a boolean expression,
which is the filtering criterion;
<li/> <tt>mlr filter</tt> expressions may not
reference the <tt>filter</tt> keyword within them; and
<li/> <tt>mlr filter</tt> expressions may not use <tt>tee</tt>, <tt>emit</tt>,
<tt>emitp</tt>, or <tt>emitf</tt>.
</ul>
<p/> All the rest is the same: in particular, you can define and invoke
functions and subroutines to help produce the final boolean statement, and
record fields may be assigned to in the statements preceding the final boolean
statement.
<p/>There are more details and more choices, of course, as detailed in the following sections.
</div>
<!-- ================================================================ -->
<h1>Syntax</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_syntax');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_syntax" style="display: block">
<!-- ================================================================ -->
<h2>Expression formatting</h2>
<p/>Multiple expressions may be given, separated by semicolons, and each may refer to the ones before:
POKI_RUN_COMMAND{{ruby -e '10.times{|i|puts "i=#{i}"}' | mlr --opprint put '$j = $i + 1; $k = $i +$j'}}HERE
Newlines within the expression are ignored, which can help increase legibility of complex expressions:
POKI_INCLUDE_AND_RUN_ESCAPED(data/put-multiline-example.txt)HERE
POKI_RUN_COMMAND{{mlr --opprint filter '($x > 0.5 && $y < 0.5) || ($x < 0.5 && $y > 0.5)' then stats2 -a corr -f x,y data/medium}}HERE
<!-- ================================================================ -->
<h2>Expressions from files</h2>
<p/>The simplest way to enter expressions for <tt>put</tt> and <tt>filter</tt> is between single quotes on the command line, e.g.
POKI_INCLUDE_AND_RUN_ESCAPED(data/fe-example-1.sh)HERE
POKI_INCLUDE_AND_RUN_ESCAPED(data/fe-example-2.sh)HERE
<p/>You may, though, find it convenient to put expressions into files for reuse, and read them
<b>using the -f option</b>. For example:
POKI_RUN_COMMAND{{cat data/fe-example-3.mlr}}HERE
POKI_RUN_COMMAND{{mlr --from data/small put -f data/fe-example-3.mlr}}HERE
<p/>If you have some of the logic in a file and you want to write the rest on the command line, you
can <b>use the -f and -e options together</b>:
POKI_RUN_COMMAND{{cat data/fe-example-4.mlr}}HERE
POKI_RUN_COMMAND{{mlr --from data/small put -f data/fe-example-4.mlr -e '$xy = f($x, $y)'}}HERE
<p/>A suggested use-case here is defining functions in files, and calling them from command-line expressions.
<p/>Another suggested use-case is putting default parameter values in files, e.g. using
<tt>begin{@count=is_present(@count)?@count:10}</tt> in the file, where you can precede that using
<tt>begin{@count=40}</tt> using <tt>-e</tt>.
<p/>Moreover, you can have one or more <tt>-f</tt> expressions (maybe one
function per file, for example) and one or more <tt>-e</tt> expressions on the
command line. If you mix <tt>-f</tt> and <tt>-e</tt> then the expressions are
evaluated in the order encountered. (Since the expressions are all simply
concatenated together in order, don&rsquo;t forget intervening semicolons: e.g.
not <tt>mlr put -e '$x=1' -e '$y=2 ...'</tt> but rather <tt>mlr put -e '$x=1;' -e
'$y=2' ...</tt>.)
<!-- ================================================================ -->
<h2>Semicolons, commas, newlines, and curly braces</h2>
<p/>Miller uses <b>semicolons as statement separators</b>, not statement terminators. This means you can write:
POKI_INCLUDE_ESCAPED(data/semicolon-example.txt)HERE
<p/>Semicolons are optional after closing curly braces (which close conditionals and loops as discussed below).
POKI_RUN_COMMAND{{echo x=1,y=2 | mlr put 'while (NF < 10) { $[NF+1] = ""} $foo = "bar"'}}HERE
POKI_RUN_COMMAND{{echo x=1,y=2 | mlr put 'while (NF < 10) { $[NF+1] = ""}; $foo = "bar"'}}HERE
<p/>Semicolons are required between statements even if those statements are on
separate lines. <b>Newlines</b> are for your convenience but have no syntactic
meaning: line endings do not terminate statements. For example, adjacent
assignment statements must be separated by semicolons even if those statements
are on separate lines:
POKI_INCLUDE_ESCAPED(data/newline-example.txt)HERE
<p/><b>Trailing commas</b> are allowed in function/subroutine definitions,
function/subroutine callsites, and map literals. This is intended for (although
not restricted to) the multi-line case:
POKI_INCLUDE_AND_RUN_ESCAPED(data/trailing-commas.sh)HERE
<p/>Bodies for all compound statements must be enclosed in <b>curly braces</b>, even if the body is a single statement:
POKI_CARDIFY{{mlr put 'if ($x == 1) $y = 2' # Syntax error}}HERE
POKI_CARDIFY{{mlr put 'if ($x == 1) { $y = 2 }' # This is OK}}HERE
<p/>Bodies for compound statements may be empty:
POKI_CARDIFY{{mlr put 'if ($x == 1) { }' # This no-op is syntactically acceptable}}HERE
</div>
<!-- ================================================================ -->
<h1>Variables</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_variables');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_variables" style="display: block">
<p/>Miller has the following kinds of variables:
<p/> <b>Built-in variables</b> such as <tt>NF</tt>, <tt>NF</tt>,
<tt>FILENAME</tt>, <tt>PI</tt>, and <tt>E</tt>. These are all capital letters
and are read-only (although some of them change value from one record to
another).
<p/> <b>Fields of stream records</b>, accessed using the <tt>$</tt> prefix.
These refer to fields of the current data-stream record. For example, in
<tt>echo x=1,y=2 | mlr put '$z = $x + $y'</tt>, <tt>$x</tt> and <tt>$y</tt>
refer to input fields, and <tt>$z</tt> refers to a new, computed output field.
In a few contexts, presented below, you can refer to the entire record as
<tt>$*</tt>.
<p/> <b>Out-of-stream variables</b> accessed using the <tt>@</tt> prefix. These
refer to data which persist from one record to the next, including in
<tt>begin</tt> and <tt>end</tt> blocks (which execute before/after the record
stream is consumed, respectively). You use them to remember values across
records, such as sums, differences, counters, and so on. In a few contexts,
presented below, you can refer to the entire out-of-stream-variables collection
as <tt>@*</tt>.
<p/> <b>Local variables</b> are limited in scope and extent to the current
statements being executed: these include function arguments, bound variables in
for loops, and explicitly declared local variables.
<p/> <b>Keywords</b> are not variables, but since their names are reserved, you
cannot use these names for local variables.
<!-- ================================================================ -->
<h2>Built-in variables</h2>
<p/> These are written all in capital letters, such as <tt>NR</tt>,
<tt>NF</tt>, <tt>FILENAME</tt>, and only a small, specific set of them is
defined by Miller.
<p/>Namely, Miller supports the following five built-in variables for <a
href="reference-verbs.html#filter"><tt>filter</tt></a> and <tt>put</tt>, all <tt>awk</tt>-inspired:
<tt>NF</tt>, <tt>NR</tt>, <tt>FNR</tt>, <tt>FILENUM</tt>, and
<tt>FILENAME</tt>, as well as the mathematical constants <tt>PI</tt> and
<tt>E</tt>. Lastly, the <tt>ENV</tt> hashmap allows read access to environment
variables, e.g. <tt>ENV["HOME"]</tt> or <tt>ENV["foo_".$hostname]</tt>.
POKI_RUN_COMMAND{{mlr filter 'FNR == 2' data/small*}}HERE
POKI_RUN_COMMAND{{mlr put '$fnr = FNR' data/small*}}HERE
<p/> Their values of <tt>NF</tt>, <tt>NR</tt>, <tt>FNR</tt>, <tt>FILENUM</tt>,
and <tt>FILENAME</tt> change from one record to the next as Miller scans
through your input data stream. The mathematical constants, of course, do not
change; <tt>ENV</tt> is populated from the system environment variables at the
time Miller starts and is read-only for the remainder of program execution.
<p/> Their <b>scope is global</b>: you can refer to them in any <tt>filter</tt>
or <tt>put</tt> statement. Their values are assigned by the input-record
reader:
POKI_RUN_COMMAND{{mlr --csv put '$nr = NR' data/a.csv}}HERE
POKI_RUN_COMMAND{{mlr --csv repeat -n 3 then put '$nr = NR' data/a.csv}}HERE
<p/> The <b>extent</b> is for the duration of the put/filter: in a
<tt>begin</tt> statement (which executes before the first input record is
consumed) you will find <tt>NR=1</tt> and in an <tt>end</tt> statement (which
is executed after the last input record is consumed) you will find <tt>NR</tt>
to be the total number of records ingested.
<p/> These are all <b>read-only</b> for the <tt>mlr put</tt> and <tt>mlr
filter</tt> DSLs: they may be assigned from, e.g. <tt>$nr=NR</tt>, but they may
not be assigned to: <tt>NR=100</tt> is a syntax error.
<!-- ================================================================ -->
<h2>Field names</h2>
<p/>Names of fields within stream records must be specified using a <tt>$</tt>
in <tt>filter</tt> and <a href="reference-verbs.html#put"><tt>put</tt></a>
expressions, even though the dollar signs don&rsquo;t appear in the data stream
itself. For integer-indexed data, this looks like <tt>awk</tt>&rsquo;s
<tt>$1,$2,$3</tt>, except that Miller allows non-numeric names such as
<tt>$quantity</tt> or <tt>$hostname</tt>. Likewise, enclose string literals
in double quotes in <tt>filter</tt> expressions even though they don&rsquo;t
appear in file data. In particular, <tt>mlr filter '$x=="abc"'</tt> passes
through the record <tt>x=abc</tt>.
<p/>If field names have <b>special characters</b> such as <tt>.</tt> then you
can use braces, e.g. <tt>'${field.name}'</tt>.
<p/>You may also use a <b>computed field name</b> in square brackets, e.g.
POKI_RUN_COMMAND{{echo a=3,b=4 | mlr filter '$["x"] < 0.5'}}HERE
POKI_RUN_COMMAND{{echo s=green,t=blue,a=3,b=4 | mlr put '$[$s."_".$t] = $a * $b'}}HERE
<p/> The names of record fields depend on the contents of your input data stream, and their
values change from one record to the next as Miller scans through your input
data stream.
<p/> Their <b>extent</b> is limited to the current record; their <b>scope</b>
is the <tt>filter</tt> or <tt>put</tt> command in which they appear.
<p/> These are <b>read-write</b>: you can do <tt>$y=2*$x</tt>,
<tt>$x=$x+1</tt>, etc.
<p/> Records are Miller&rsquo;s output: field names present in the input
stream are passed through to output (written to standard output) unless fields
are removed with <tt>cut</tt>, or records are excluded with <tt>filter</tt> or
<tt>put -q</tt>, etc. Simply assign a value to a field and it will be output.
<!-- ================================================================ -->
<h2>Out-of-stream variables</h2>
<p/> These are prefixed with an at-sign, e.g. <tt>@sum</tt>. Furthermore,
unlike built-in variables and stream-record fields, they are maintained in an
arbitrarily nested hashmap: you can do <tt>@sum += $quanity</tt>, or
<tt>@sum[$color] += $quanity</tt>, or <tt>@sum[$color][$shape] +=
$quanity</tt>. The keys for the multi-level hashmap can be any expression which
evaluates to string or integer: e.g. <tt>@sum[NR] = $a + $b</tt>,
<tt>@sum[$a."-".$b] = $x</tt>, etc.
<p/> Their names and their values are entirely under your control; they change
only when you assign to them.
<p/> Just as for field names in stream records, if you want to define out-of-stream variables
with <b>special characters</b> such as <tt>.</tt> then you can use braces, e.g. <tt>'@{variable.name}["index"]'</tt>.
<p/>You may use a <b>computed key </b> in square brackets, e.g.
POKI_RUN_COMMAND{{echo s=green,t=blue,a=3,b=4 | mlr put -q '@[$s."_".$t] = $a * $b; emit all'}}HERE
<p/> Out-of-stream variables are <b>scoped</b> to the <tt>put</tt> command in
which they appear. In particular, if you have two or more <tt>put</tt>
commands separated by <tt>then</tt>, each put will have its own set of
out-of-stream variables:
POKI_RUN_COMMAND{{cat data/a.dkvp}}HERE
POKI_RUN_COMMAND{{mlr put '@sum += $a; end {emit @sum}' then put 'is_present($a) {$a=10*$a; @sum += $a}; end {emit @sum}' data/a.dkvp}}HERE
<p/> Out-of-stream variables&rsquo; <b>extent</b> is from the start to the end of the record stream,
i.e. every time the <tt>put</tt> or <tt>filter</tt> statement referring to them is executed.
<p/> Out-of-stream variables are <b>read-write</b>: you can do <tt>$sum=@sum</tt>, <tt>@sum=$sum</tt>,
etc.
<!-- ================================================================ -->
<h2>Indexed out-of-stream variables</h2>
<p/>Using an index on the <tt>@count</tt> and <tt>@sum</tt> variables, we get the benefit of the
<tt>-g</tt> (group-by) option which <tt>mlr stats1</tt> and various other Miller commands have:
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-6.sh)HERE
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-7.sh)HERE
<p/>Indices can be arbitrarily deep &mdash; here there are two or more of them:
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-6a.sh)HERE
The idea is that <tt>stats1</tt>, and other Miller verbs, encapsulate
frequently-used patterns with a minimum of keystroking (and run a little
faster), whereas using out-of-stream variables you have more flexibility and
control in what you do.
<p/>Begin/end blocks can be mixed with pattern/action blocks. For example:
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-8.sh)HERE
<!-- ================================================================ -->
<h2>Local variables</h2>
<p/>Local variables are similar to out-of-stream variables, except that
their extent is limited to the expressions in which they appear (and their
basenames can&rsquo;t be computed using square brackets).
There are three kinds of local variables: <b>arguments</b> to
functions/subroutines, <b>variables bound within for-loops</b>, and
<b>locals</b> defined within control blocks. They may be untyped using
<tt>var</tt>, or typed using <tt>num</tt>, <tt>int</tt>, <tt>float</tt>,
<tt>str</tt>, <tt>bool</tt>, and <tt>map</tt>.
<p/>For example:
POKI_INCLUDE_AND_RUN_ESCAPED(data/local-example-1.sh)HERE
<p/>Things which are completely unsurprising, resembling many other languages:
<ul>
<li/> Parameter names are bound to their arguments but can be reassigned, e.g.
if there is a parameter named <tt>a</tt> then you can reassign the value of
<tt>a</tt> to be something else within the function if you like.
<li/> However, you cannot redeclare the <i>type</i> of an argument or a local:
<tt>var a=1; var a=2</tt> is an error but
<tt>var a=1; a=2</tt> is OK.
<li/> All argument-passing is positional rather than by name; arguments are
passed by value, not by reference. (This is also true for map-valued variables:
they are not, and cannot be, passed by reference)
<li/> You can define locals (using <tt>var</tt>, <tt>num</tt>, etc.) at any
scope (if-statements, else-statements, while-loops, for-loops, or the top-level
scope), and nested scopes will have access (more details on scope in the next
section). If you define a local variable with the same name inside an inner
scope, then a new variable is created with the narrower scope.
<li/> If you assign to a local variable for the first time in a scope without
declaring it as <tt>var</tt>, <tt>num</tt>, etc. then: if it exists in an outer
scope, that outer-scope variable will be updated; if not, it will be defined in
the current scope as if <tt>var</tt> had been used. (See also <a
href="#Type-checking">here</a> for an example.) I recommend always declaring
variables explicitly to make the intended scoping clear.
<li/> Functions and subroutines never have access to locals from their callee
(unless passed by value as arguments).
</ul>
<p/>Things which are perhaps surprising compared to other languages:
<ul>
<li/> Type declarations using <tt>var</tt>, or typed using <tt>num</tt>,
<tt>int</tt>, <tt>float</tt>, <tt>str</tt>, and <tt>bool</tt> are necessary to
declare local variables. Function arguments and variables bound in for-loops
over stream records and out-of-stream variables are <i>implicitly</i> declared
using <tt>var</tt>. (Some examples are shown below.)
<li/> Type-checking is done at assignment time. For example, <tt>float f =
0</tt> is an error (since <tt>0</tt> is an integer), as is <tt>float f = 0.0; f
= 1</tt>. For this reason I prefer to use <tt>num</tt> over <tt>float</tt> in
most contexts since <tt>num</tt> encompasses integer and floating-point values.
More information about type-checking is <a href="#Type-checking">here</a>.
<li/> Bound variables in for-loops over stream records and out-of-stream
variables are implicitly local to that block. E.g. in
<tt>for (k, v in $*) { ... }</tt>
<tt>for ((k1, k2), v in @*) { ... }</tt>
if there are <tt>k</tt>, <tt>v</tt>, etc. in the enclosing scope then those
will be masked by the loop-local bound variables in the loop, and moreover
the values of the loop-local bound variables are not available after the
end of the loop.
<li/> For C-style triple-for loops, if a for-loop variable is defined using
<tt>var</tt>, <tt>int</tt>, etc. then it is scoped to that for-loop. E.g.
<tt>for (i = 0; i < 10; i += 1) { ... }</tt> and <tt>for (int i = 0; i < 10; i
+= 1) { ... }</tt>. (This is unsurprising.). If there is no typedecl and an
outer-scope variable of that name exists, then it is used. (This is also
unsurprising.) But of there is no outer-scope variable of that name then the
variable is scoped to the for-loop only.
</ul>
<p/> The following example demonstrates the scope rules:
POKI_RUN_COMMAND{{cat data/scope-example.mlr}}HERE
POKI_RUN_COMMAND{{cat data/scope-example.dat}}HERE
POKI_RUN_COMMAND{{mlr --oxtab --from data/scope-example.dat put -f data/scope-example.mlr}}HERE
<p/> And this example demonstrates the type-declaration rules:
POKI_RUN_COMMAND{{cat data/type-decl-example.mlr}}HERE
<!-- ================================================================ -->
<h2>Map literals</h2>
<p/>Miller&rsquo;s <tt>put</tt>/<tt>filter</tt> DSL has four kinds of hashmaps.
<b>Stream records</b> are (single-level) maps from name to value.
<b>Out-of-stream variables</b> and <b>local variables</b> can also be maps,
although they can be multi-level hashmaps (e.g. <tt>@sum[$x][$y]</tt>). The
fourth kind is <b>map literals</b>. These cannot be on the left-hand side of
assignment expressions. Syntactically they look like JSON, although Miller
allows string and integer keys in its map literals while JSON allows only
string keys (e.g. <tt>"3"</tt> rather than <tt>3</tt>).
<p/> For example, the following swaps the input stream&rsquo;s <tt>a</tt> and
<tt>i</tt> fields, modifies <tt>y</tt>, and drops the rest:
POKI_INCLUDE_AND_RUN_ESCAPED(data/map-literal-example-1.sh)HERE
<p/>Likewise, you can assign map literals to out-of-stream variables or local variables;
pass them as arguments to user-defined functions, return them from functions, and so on:
POKI_INCLUDE_AND_RUN_ESCAPED(data/map-literal-example-2.sh)HERE
<p/> Like out-of-stream and local variables, map literals can be multi-level:
POKI_INCLUDE_AND_RUN_ESCAPED(data/map-literal-example-3.sh)HERE
<p/>By default, map-valued expressions are dumped using JSON formatting. If you
use <tt>dump</tt> to print a hashmap with integer keys and you don&rsquo;t want
them double-quoted (JSON-style) then you can use <tt>mlr put
--jknquoteint</tt>. See also <tt>mlr put --help</tt>.
<!-- ================================================================ -->
<h2>Type-checking</h2>
<p/> Miller&rsquo;s <tt>put</tt>/<tt>filter</tt> DSLs support two optional
kinds of type-checking. One is inline <b>type-tests</b> and
<b>type-assertions</b> within expressions. The other is <b>type
declarations</b> for assignments to local variables, binding of arguments to
user-defined functions, and return values from user-defined functions, These
are discussed in the following subsections.
<p/> Use of type-checking is entirely up to you: omit it if you want
flexibility with heterogeneous data; use it if you want to help catch
misspellings in your DSL code or unexpected irregularities in your input data.
<!-- ================================================================ -->
<h3>Type-test and type-assertion expressions</h3>
<p/> The following <tt>is...</tt> functions take a value and return a boolean
indicating whether the argument is of the indicated type. The
<tt>assert_...</tt> functions return their argument if it is of the specified
type, and cause a fatal error otherwise:
<table>
<tr>
<td>
POKI_RUN_COMMAND{{mlr -F | grep ^is}}HERE
</td>
<td>
POKI_RUN_COMMAND{{mlr -F | grep ^assert}}HERE
</td>
</tr>
</table>
<p/> Please see the POKI_PUT_LINK_FOR_PAGE(cookbook.html#Data-cleaning_examples)HERE for examples
of how to use these.
<!-- ================================================================ -->
<h3>Type-declarations for local variables, function parameter, and function return values</h3>
<p/> Local variables can be defined either untyped as in <tt>x = 1</tt>, or
typed as in <tt>int x = 1</tt>. Types include <b>var</b> (explicitly untyped),
<b>int</b>, <b>float</b>, <b>num</b> (int or float), <b>str</b>, <b>bool</b>,
and <b>map</b>. These optional type declarations are enforced at the time
values are assigned to variables: whether at the initial value assignment as in
<tt>int x = 1</tt> or in any subsequent assignments to the same variable
farther down in the scope.
<p/> The reason for <tt>num</tt> is that <tt>int</tt> and <tt>float</tt> typedecls are very precise:
<div class="pokipanel">
<pre>
float a = 0; # Runtime error since 0 is int not float
int b = 1.0; # Runtime error since 1.0 is float not int
num c = 0; # OK
num d = 1.0; # OK
</pre>
</div>
<p/> A suggestion is to use <tt>num</tt> for general use when you want numeric
content, and use <tt>int</tt> when you genuinely want integer-only values, e.g.
in loop indices or map keys (since Miller map keys can only be strings or
ints).
<p/> The <tt>var</tt> type declaration indicates no type restrictions, e.g.
<tt>var x = 1</tt> has the same type restrictions on <tt>x</tt> as <tt>x =
1</tt>. The difference is in intentional shadowing: if you have <tt>x = 1</tt>
in outer scope and <tt>x = 2</tt> in inner scope (e.g. within a for-loop or an
if-statement) then outer-scope <tt>x</tt> has value 2 after the second
assignment. But if you have <tt>var x = 2</tt> in the inner scope, then you
are declaring a variable scoped to the inner block.) For example:
<div class="pokipanel">
<pre>
x = 1;
if (NR == 4) {
x = 2; # Refers to outer-scope x: value changes from 1 to 2.
}
print x; # Value of x is now two
</pre>
</div>
<div class="pokipanel">
<pre>
x = 1;
if (NR == 4) {
var x = 2; # Defines a new inner-scope x with value 2
}
print x; # Value of this x is still 1
</pre>
</div>
<p/> Likewise function arguments can optionally be typed, with type enforced
when the function is called:
<div class="pokipanel">
<pre>
func f(map m, int i) {
...
}
$a = f({1:2, 3:4}, 5); # OK
$b = f({1:2, 3:4}, "abc"); # Runtime error
$c = f({1:2, 3:4}, $x); # Runtime error for records with non-integer field named x
if (NR == 4) {
var x = 2; # Defines a new inner-scope x with value 2
}
print x; # Value of this x is still 1
</pre>
</div>
<p/> Thirdly, function return values can be type-checked at the point of
<tt>return</tt> using <tt>:</tt> and a typedecl after the parameter list:
<div class="pokipanel">
<pre>
func f(map m, int i): bool {
...
...
if (...) {
return "false"; # Runtime error if this branch is taken
}
...
...
if (...) {
return retval; # Runtime error if this function doesn't have an in-scope
# boolean-valued variable named retval
}
...
...
# In Miller if your functions don't explicitly return a value, they return absent-null.
# So it would also be a runtime error on reaching the end of this function without
# an explicit return statement.
}
</pre>
</div>
<!-- ================================================================ -->
<h2>Null data: empty and absent</h2>
<p/> Please see
<a href="reference.html#Null_data:_empty_and_absent">here</a>.
<!-- ================================================================ -->
<h2>Aggregate variable assignments</h2>
<p/>There are three remaining kinds of variable assignment using out-of-stream
variables, the last two of which use the <tt>$*</tt> syntax:
<ul>
<li/> Recursive copy of out-of-stream variables
<li/> Out-of-stream variable assigned to full stream record
<li/> Full stream record assigned to an out-of-stream variable
</ul>
<p/> Example recursive copy of out-of-stream variables:
POKI_RUN_COMMAND{{mlr --opprint put -q '@v["sum"] += $x; @v["count"] += 1; end{dump; @w = @v; dump}' data/small}}HERE
<p/>Example of out-of-stream variable assigned to full stream record, where the 2nd record is stashed, and the 4th record is overwritten with that:
POKI_RUN_COMMAND{{mlr put 'NR == 2 {@keep = $*}; NR == 4 {$* = @keep}' data/small}}HERE
<p/>Example of full stream record assigned to an out-of-stream variable, finding
the record for which the <tt>x</tt> field has the largest value in the input
stream:
POKI_RUN_COMMAND{{cat data/small}}HERE
POKI_RUN_COMMAND{{mlr --opprint put -q 'is_null(@xmax) || $x > @xmax {@xmax=$x; @recmax=$*}; end {emit @recmax}' data/small}}HERE
<!-- ================================================================ -->
<h2>Keywords for filter and put</h2>
POKI_RUN_COMMAND{{mlr --help-all-keywords}}HERE
</div>
<!-- ================================================================ -->
<h1>Operator precedence</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_operator_precedence');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_operator_precedence" style="display: block">
<p/>Operators are listed in order of decreasing precedence, highest first.
<p/>
<div class="pokipanel">
<pre>
Operators Associativity
--------- -------------
() left to right
** right to left
! ~ unary+ unary- &amp; right to left
binary* / // % left to right
binary+ binary- . left to right
&lt;&lt; &gt;&gt; left to right
&amp; left to right
^ left to right
| left to right
&lt; &lt;= &gt; &gt;= left to right
== != =~ !=~ left to right
&amp;&amp; left to right
^^ left to right
|| left to right
? : right to left
= N/A for Miller (there is no $a=$b=$c)
</pre>
</div>
<p/>
</div>
<!-- ================================================================ -->
<h1>Operator and function semantics</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_operator_and_function_semantics');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_operator_and_function_semantics" style="display: block">
<ul>
<li/> Functions are in general pass-throughs straight to the system-standard C
library.
<li/> The <tt>min</tt> and <tt>max</tt> functions are different from other
multi-argument functions which return null if any of their inputs are null: for
<tt>min</tt> and <tt>max</tt>, by contrast, if one argument is null, the other
is returned.
<li/> Symmetrically with respect to the bitwise OR, XOR, and AND operators
<tt>|</tt>, <tt>^</tt>, <tt>&amp;</tt>, Miller has logical operators
<tt>||</tt>, <tt>^^</tt>, <tt>&amp;&amp;</tt>: the logical XOR not existing in
C.
<li/> The exponentiation operator <tt>**</tt> is familiar from many languages.
<li/> The regex-match and regex-not-match operators <tt>=~</tt> and
<tt>!=~</tt> are similar to those in Ruby and Perl.
</ul>
</div>
<!-- ================================================================ -->
<h1>Control structures</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_control_structures');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_control_structures" style="display: block">
<!-- ================================================================ -->
<h2>Pattern-action blocks</h2>
<p/>These are reminiscent of <tt>awk</tt> syntax. They can be used to allow
assignments to be done only when appropriate &mdash; e.g. for math-function
domain restrictions, regex-matching, and so on:
POKI_RUN_COMMAND{{mlr cat data/put-gating-example-1.dkvp}}HERE
POKI_RUN_COMMAND{{mlr put '$x > 0.0 { $y = log10($x); $z = sqrt($y) }' data/put-gating-example-1.dkvp}}HERE
POKI_RUN_COMMAND{{mlr cat data/put-gating-example-2.dkvp}}HERE
POKI_RUN_COMMAND{{mlr put '$a =~ "([a-z]+)_([0-9]+)" { $b = "left_\1"; $c = "right_\2" }' data/put-gating-example-2.dkvp}}HERE
<p/>This produces heteregenous output which Miller, of course, has no problems
with (see POKI_PUT_LINK_FOR_PAGE(record-heterogeneity.html)HERE). But if you
want homogeneous output, the curly braces can be replaced with a semicolon
between the expression and the body statements. This causes <tt>put</tt> to
evaluate the boolean expression (along with any side effects, namely,
regex-captures <tt>\1</tt>, <tt>\2</tt>, etc.) but doesn&rsquo;t use it as a
criterion for whether subsequent assignments should be executed. Instead,
subsequent assignments are done unconditionally:
POKI_RUN_COMMAND{{mlr put '$x > 0.0; $y = log10($x); $z = sqrt($y)' data/put-gating-example-1.dkvp}}HERE
POKI_RUN_COMMAND{{mlr put '$a =~ "([a-z]+)_([0-9]+)"; $b = "left_\1"; $c = "right_\2"' data/put-gating-example-2.dkvp}}HERE
<!-- ================================================================ -->
<h2>If-statements</h2>
<p/>These are again reminiscent of <tt>awk</tt>. Pattern-action blocks are a special case of <tt>if</tt> with no
<tt>elif</tt> or <tt>else</tt> blocks, no <tt>if</tt> keyword, and parentheses optional around the boolean expression:
POKI_CARDIFY{{mlr put 'NR == 4 {$foo = "bar"}'}}HERE
POKI_CARDIFY{{mlr put 'if (NR == 4) {$foo = "bar"}'}}HERE
<p/>Compound statements use <tt>elif</tt> (rather than <tt>elsif</tt> or <tt>else if</tt>):
POKI_INCLUDE_ESCAPED(data/if-chain.sh)HERE
<!-- ================================================================ -->
<h2>While and do-while loops</h2>
<p/>Miller&rsquo;s <tt>while</tt> and <tt>do-while</tt> are unsurprising in
comparison to various languages, as are <tt>break</tt> and <tt>continue</tt>:
POKI_INCLUDE_AND_RUN_ESCAPED(data/while-example-1.sh)HERE
POKI_INCLUDE_AND_RUN_ESCAPED(data/while-example-2.sh)HERE
<p/> A <tt>break</tt> or <tt>continue</tt> within nested conditional blocks or
if-statements will, of course, propagate to the innermost loop enclosing them,
if any. A <tt>break</tt> or <tt>continue</tt> outside a loop is a syntax error
that will be flagged as soon as the expression is parsed, before any input
records are ingested.
<p/> The existence of <tt>while</tt>, <tt>do-while</tt>, and <tt>for</tt> loops
in Miller&rsquo;s DSL means that you can create infinite-loop scenarios
inadvertently. In particular, please recall that DSL statements are executed
once if in <tt>begin</tt> or <tt>end</tt> blocks, and once <i>per record</i>
otherwise. For example, <b><tt>while (NR < 10)</tt> will never terminate as
<tt>NR</tt> is only incremented between records</b>.
<!-- ================================================================ -->
<h2>For-loops</h2>
<p/>While Miller&rsquo;s <tt>while</tt> and <tt>do-while</tt> statements are
much as in many other languages, <tt>for</tt> loops are more idiosyncratic to
Miller. They are loops over key-value pairs, whether in stream records,
out-of-stream variables, local variables, or map-literals: more reminiscent of
<tt>foreach</tt>, as in (for example) PHP. There are <b>for-loops over map
keys</b> and <b>for-loops over key-value tuples</b>. Additionally, Miller has a
<b>C-style triple-for loop</b> with initialize, test, and update statements.
<p/>As with <tt>while</tt> and <tt>do-while</tt>, a <tt>break</tt> or
<tt>continue</tt> within nested control structures will propagate to the
innermost loop enclosing them, if any, and a <tt>break</tt> or
<tt>continue</tt> outside a loop is a syntax error that will be flagged as soon
as the expression is parsed, before any input records are ingested.
<h3>Key-only for-loops </h3>
<p/>The <tt>key</tt> variable is always bound to the <i>key</i> of key-value pairs:
POKI_INCLUDE_AND_RUN_ESCAPED(data/single-for-example-1.sh)HERE
POKI_INCLUDE_AND_RUN_ESCAPED(data/single-for-example-2.sh)HERE
<p/>Note that the value corresponding to a given key may be gotten as through a
<b>computed field name</b> using square brackets as in <tt>$[key]</tt> for
stream records, or by indexing the looped-over variable using square brackets.
<h3>Key-value for-loops </h3>
<p/>Single-level keys may be gotten at using either <tt>for(k,v)</tt> or
<tt>for((k),v)</tt>; multi-level keys may be gotten at using
<tt>for((k1,k2,k3),v)</tt> and so on. The <tt>v</tt> variable will be bound to
to a scalar value (a string or a number) if the map stops at that level, or to
a map-valued variable if the map goes deeper. If the map isn&rsquo;t deep
enough then the loop body won&rsquo;t be executed.
POKI_RUN_COMMAND{{cat data/for-srec-example.tbl}}HERE
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-srec-example-1.sh)HERE
POKI_RUN_COMMAND{{mlr --from data/small --opprint put 'for (k,v in $*) { $[k."_type"] = typeof(v) }'}}HERE
<p/>Note that the value of the current field in the for-loop can be gotten either using the bound
variable <tt>value</tt>, or through a <b>computed field name</b> using square brackets as in <tt>$[key]</tt>.
<p/>Important note: to avoid inconsistent looping behavior in case you&rsquo;re
setting new fields (and/or unsetting existing ones) while looping over the
record, <b>Miller makes a copy of the record before the loop: loop variables
are bound from the copy and all other reads/writes involve the record
itself</b>:
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-srec-example-2.sh)HERE
It can be confusing to modify the stream record while iterating over a copy of it, so
instead you might find it simpler to use a local variable in the loop and only update
the stream record after the loop:
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-srec-example-3.sh)HERE
<p/>You can also start iterating on sub-hashmaps of an out-of-stream or local
variable; you can loop over nested keys; you can loop over all out-of-stream
variables. The bound variables are bound to a copy of the sub-hashmap as it
was before the loop started. The sub-hashmap is specified by square-bracketed
indices after <tt>in</tt>, and additional deeper indices are bound to loop
key-variables. The terminal values are bound to the loop value-variable
whenever the keys are not too shallow. The value-variable may refer to a
terminal (string, number) or it may be map-valued if the map goes deeper.
Example indexing is as follows:
POKI_INCLUDE_ESCAPED(data/for-oosvar-example-0a.txt)HERE
<p/>That&rsquo;s confusing in the abstract, so a concrete example is in order.
Suppose the out-of-stream variable <tt>@myvar</tt> is populated as follows:
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-oosvar-example-0b.sh)HERE
<p/> Then we can get at various values as follows:
<table><tr><td>
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-oosvar-example-0c.sh)HERE
</td><td>
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-oosvar-example-0d.sh)HERE
</td><td>
POKI_INCLUDE_AND_RUN_ESCAPED(data/for-oosvar-example-0e.sh)HERE
</td></tr></table>
<h3>C-style triple-for loops</h3>
<p/> These are supported as follows:
POKI_INCLUDE_AND_RUN_ESCAPED(data/triple-for-example-1.sh)HERE
POKI_INCLUDE_AND_RUN_ESCAPED(data/triple-for-example-2.sh)HERE
Notes:
<ul>
<li/> In <tt>for (start; continuation; update) { body }</tt>, the start,
continuation, and update statements may be empty, single statements, or
multiple comma-separated statements. If the continuation is empty (e.g. <tt>for(i=1;;i+=1)</tt>) it defaults
to true.
<li/> In particular, you may use <tt>$</tt>-variables and/or
<tt>@</tt>-variables in the start, continuation, and/or update steps (as well
as the body, of course).
<li/> The typedecls such as <tt>int</tt> or <tt>num</tt> are optional. If a
typedecl is provided (for a local variable), it binds a variable scoped to the
for-loop regardless of whether a same-name variable is present in outer scope.
If a typedecl is not provided, then the variable is scoped to the for-loop if
no same-name variable is present in outer scope, or if a same-name variable is
present in outer scope then it is modified.
<li/> Miller has no <tt>++</tt> or <tt>--</tt> operators.
<li/> As with all for/if/while statements in Miller, the curly braces are
required even if the body is a single statement, or empty.
</ul>
<!-- ================================================================ -->
<h2>Begin/end blocks</h2>
<p/>Miller supports an <tt>awk</tt>-like <tt>begin/end</tt> syntax. The
statements in the <tt>begin</tt> block are executed before any input records
are read; the statements in the <tt>end</tt> block are executed after the last
input record is read. (If you want to execute some statement at the start of
each file, not at the start of the first file as with <tt>begin</tt>, you might
use a pattern/action block of the form <tt>FNR == 1 { ... }</tt>.) All
statements outside of <tt>begin</tt> or <tt>end</tt> are, of course, executed
on every input record. Semicolons separate statements inside or outside of
begin/end blocks; semicolons are required between begin/end block bodies and
any subsequent statement. For example:
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-1.sh)HERE
<p/>Since uninitialized out-of-stream variables default to 0 for
addition/substraction and 1 for multiplication when they appear on expression
right-hand sides (as in <tt>awk</tt>), the above can be written more succinctly
as
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-2.sh)HERE
<p/>The <b>put -q</b> option is a shorthand which suppresses printing of each
output record, with only <tt>emit</tt> statements being output. So to get only
summary outputs, one could write
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-3.sh)HERE
<p/>We can do similarly with multiple out-of-stream variables:
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-4.sh)HERE
This is of course not much different than
POKI_INCLUDE_AND_RUN_ESCAPED(data/begin-end-example-5.sh)HERE
<p/>Note that it&rsquo;s a syntax error for begin/end blocks to refer to field
names (beginning with <tt>$</tt>), since these execute outside the context of
input records.
</div>
<!-- ================================================================ -->
<h1>Output statements</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_output_statements');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_output_statements" style="display: block">
<p/>You can <b>output</b> variable-values or expressions in <b>five ways</b>:
<ul>
<li/> <b>Assign</b> them to stream-record fields. For example,
<tt>$cumulative_sum = @sum</tt>. For another example, <tt>$nr = NR</tt> adds a
field named <tt>nr</tt> to each output record, containing the value of the
built-in variable <tt>NR</tt> as of when that record was ingested.
<li/> Use the <b>print</b> or <b>eprint</b> keywords which immediately print an
expression <i>directly to standard output or standard error</i>, respectively.
Note that <tt>dump</tt>, <tt>edump</tt>, <tt>print</tt>, and <tt>eprint</tt>
don&rsquo;t output records which participate in <tt>then</tt>-chaining; rather,
they&rsquo;re just immediate prints to stdout/stderr. The <tt>printn</tt> and
<tt>eprintn</tt> keywords are the same except that they don&rsquo;t print final
newlines. Additionally, you can print to a specified file instead of
stdout/stderr.
<li/> Use the <b>dump</b> or <b>edump</b> keywords, which <i>immediately print
all out-of-stream variables as a JSON data structure to the standard output or
standard error</i> (respectively).
<li/> Use <b>tee</b> which formats the current stream record (not just an
arbitrary string as with <b>print</b>) to a specific file.
<li/> Use <b>emit</b>/<b>emitp</b>/<b>emitf</b> to send out-of-stream
variables&rsquo; current values to the output record stream, e.g. <tt>@sum +=
$x; emit @sum</tt> which produces an extra output record such as
<tt>sum=3.1648382</tt>.
</ul>
<p/>For the first two options you are populating the output-records stream
which feeds into the next verb in a <tt>then</tt>-chain (if any), or which otherwise
is formatted for output using <tt>--o...</tt> flags.
<p/>For the last three options you are sending output directly to standard
output, standard error, or a file.
<!-- ================================================================ -->
<h2>Print statements</h2>
<p/>The <tt>print</tt> statement is perhaps self-explanatory, but with a few
light caveats:
<ul>
<li/> There are four variants: <tt>print</tt> goes to stdout with final
newline, <tt>printn</tt> goes to stdout without final newline (you can include
one using "\n" in your output string), <tt>eprint</tt> goes to stderr with
final newline, and <tt>eprintn</tt> goes to stderr without final newline.
<li/> Output goes directly to stdout/stderr, respectively: data produced this
way do not go downstream to the next verb in a <tt>then</tt>-chain. (Use
<tt>emit</tt> for that.)
<li/> Print statements are for strings (<tt>print "hello"</tt>), or things
which can be made into strings: numbers (<tt>print 3</tt>, <tt>print $a +
$b</tt>, or concatenations thereof (<tt>print "a + b = " . ($a + $b)</tt>).
Maps (in <tt>$*</tt>, map-valued out-of-stream or local variables, and map
literals) aren&rsquo;t convertible into strings. If you print a map, you get
<tt>{is-a-map}</tt> as output. Please use <tt>dump</tt> to print maps.
<li/>You can redirect print output to a file:
<tt>mlr --from myfile.dat put 'print &gt; "tap.txt", $x'</tt>
<tt>mlr --from myfile.dat put 'o=$*; print &gt; $a.".txt", $x'</tt>.
<li/> See also the <a href="#Redirected-output_statements">section on redirected output</a> for examples.
</ul>
<!-- ================================================================ -->
<h2>Dump statements</h2>
<p/>The <tt>dump</tt> statement is for printing expressions, including maps,
directly to stdout/stderr, respectively:
<ul>
<li/> There are two variants: <tt>dump</tt> prints to stdout; <tt>edump</tt>
prints to stderr.
<li/> Output goes directly to stdout/stderr, respectively: data produced this
way do not go downstream to the next verb in a <tt>then</tt>-chain. (Use
<tt>emit</tt> for that.)
<li/> You can use <tt>dump</tt> to output single strings, numbers,
or expressions including map-valued data. Map-valued data are printed
as JSON. Miller allows string and integer keys in its map literals while
JSON allows only string keys, so use <tt>mlr put --jknquoteint</tt> if
you want integer-valued map keys not double-quoted.
<li/> If you use <tt>dump</tt> (or <tt>edump</tt>) with no arguments, you get a
JSON structure representing the current values of all out-of-stream variables.
<li/> As with <tt>print</tt>, you can redirect output to files.
<li/> See also the <a href="#Redirected-output_statements">section on redirected output</a> for examples.
</ul>
<!-- ================================================================ -->
<h2>Tee statements</h2>
<p/> Records produced by a <tt>mlr put</tt> go downstream to the next verb in
your <tt>then</tt>-chain, if any, or otherwise to standard output. If you want
to additionally copy out records to files, you can do that using <tt>tee</tt>.
<p/>The syntax is, by example, <tt>mlr --from myfile.dat put 'tee &gt;
"tap.dat", $*' then sort -n index</tt>. First is <tt>tee &gt;</tt>, then the
filename expression (which can be an expression such as
<tt>"tap.".$a.".dat"</tt>), then a comma, then <tt>$*</tt>. (Nothing else but
<tt>$*</tt> is teeable.)
<p/> See also the <a href="#Redirected-output_statements">section on redirected
output</a> for examples.
<!-- ================================================================ -->
<h2>Redirected-output statements</h2>
The <b>print</b>, <b>dump</b> <b>tee</b>, <b>emitf</b>, <b>emit</b>, and
<b>emitp</b> keywords all allow you to redirect output to one or more files or
pipe-to commands. The filenames/commands are strings which can be constructed
using record-dependent values, so you can do things like splitting a table into
multiple files, one for each account ID, and so on.
<p/> Details:
<ul>
<li/> The <tt>print</tt> and <tt>dump</tt> keywords produce output immediately
to standard output, or to specified file(s) or pipe-to command if present.
POKI_RUN_COMMAND{{mlr --help-keyword print}}HERE
POKI_RUN_COMMAND{{mlr --help-keyword dump}}HERE
<li/> <tt>mlr put</tt> sends the current record (possibly modified by the
<tt>put</tt> expression) to the output record stream. Records are then input to
the following verb in a <tt>then</tt>-chain (if any), else printed to standard
output (unless <tt>put -q</tt>). The <b>tee</b> keyword <i>additionally</i>
writes the output record to specified file(s) or pipe-to command, or
immediately to <tt>stdout</tt>/<tt>stderr</tt>.
POKI_RUN_COMMAND{{mlr --help-keyword tee}}HERE
<li/> <tt>mlr put</tt>&rsquo;s <tt>emitf</tt>, <tt>emitp</tt>, and
<tt>emit</tt> send out-of-stream variables to the output record stream. These
are then input to the following verb in a <tt>then</tt>-chain (if any), else
printed to standard output. When redirected with <tt>&gt;</tt>,
<tt>&gt;&gt;</tt>, or <tt>|</tt>, they <i>instead</i> write the out-of-stream
variable(s) to specified file(s) or pipe-to command, or immediately to
<tt>stdout</tt>/<tt>stderr</tt>.
POKI_RUN_COMMAND{{mlr --help-keyword emitf}}HERE
POKI_RUN_COMMAND{{mlr --help-keyword emitp}}HERE
POKI_RUN_COMMAND{{mlr --help-keyword emit}}HERE
</ul>
<!-- ================================================================ -->
<h2>Emit statements</h2>
<p/>There are three variants: <tt>emitf</tt>, <tt>emit</tt>, and
<tt>emitp</tt>. Keep in mind that out-of-stream variables are a nested,
multi-level hashmap (directly viewable as JSON using <tt>dump</tt>), whereas
Miller output records are lists of single-level key-value pairs. The three emit
variants allow you to control how the multilevel hashmaps are flatten down to
output records. You can emit any map-valued expression, including <tt>$*</tt>,
map-valued out-of-stream variables, the entire out-of-stream-variable
collection <tt>@*</tt>, map-valued local variables, map literals, or map-valued
function return values.
<p/>Use <b>emitf</b> to output several out-of-stream variables side-by-side in the same output record.
For <tt>emitf</tt> these mustn&rsquo;t have indexing using <tt>@name[...]</tt>. Example:
POKI_RUN_COMMAND{{mlr put -q '@count += 1; @x_sum += $x; @y_sum += $y; end { emitf @count, @x_sum, @y_sum}' data/small}}HERE
<p/>Use <b>emit</b> to output an out-of-stream variable. If it&rsquo;s non-indexed you&rsquo;ll get a simple key-value pair:
POKI_RUN_COMMAND{{cat data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum += $x; end { dump }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum += $x; end { emit @sum }' data/small}}HERE
<p/>If it&rsquo;s indexed then use as many names after <tt>emit</tt> as there are indices:
POKI_RUN_COMMAND{{mlr put -q '@sum[$a] += $x; end { dump }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a] += $x; end { emit @sum, "a" }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { dump }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { emit @sum, "a", "b" }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b][$i] += $x; end { dump }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b][$i] += $x; end { emit @sum, "a", "b", "i" }' data/small}}HERE
<p/>Now for <b>emitp</b>: if you have as many names following <tt>emit</tt> as
there are levels in the out-of-stream variable&rsquo;s hashmap, then <tt>emit</tt> and <tt>emitp</tt> do the same
thing. Where they differ is when you don&rsquo;t specify as many names as there are hashmap levels. In this
case, Miller needs to flatten multiple map indices down to output-record keys: <tt>emitp</tt> includes full
prefixing (hence the <tt>p</tt> in <tt>emitp</tt>) while <tt>emit</tt> takes the deepest hashmap key as the
output-record key:
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { dump }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { emit @sum, "a" }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { emit @sum }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { emitp @sum, "a" }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { emitp @sum }' data/small}}HERE
POKI_RUN_COMMAND{{mlr --oxtab put -q '@sum[$a][$b] += $x; end { emitp @sum }' data/small}}HERE
<p/>Use <b>--oflatsep</b> to specify the character which joins multilevel
keys for <tt>emitp</tt> (it defaults to a colon):
POKI_RUN_COMMAND{{mlr put -q --oflatsep / '@sum[$a][$b] += $x; end { emitp @sum, "a" }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q --oflatsep / '@sum[$a][$b] += $x; end { emitp @sum }' data/small}}HERE
POKI_RUN_COMMAND{{mlr --oxtab put -q --oflatsep / '@sum[$a][$b] += $x; end { emitp @sum }' data/small}}HERE
<!-- ================================================================ -->
<h2>Multi-emit statements</h2>
<p/>You can emit <b>multiple map-valued expressions side-by-side</b> by
including their names in parentheses:
POKI_INCLUDE_AND_RUN_ESCAPED(data/emit-lashed.sh)HERE
What this does is walk through the first out-of-stream variable
(<tt>@x_sum</tt> in this example) as usual, then for each keylist found (e.g.
<tt>pan,wye</tt>), include the values for the remaining out-of-stream variables
(here, <tt>@x_count</tt> and <tt>@x_mean</tt>). You should use this when all
out-of-stream variables in the emit statement have <b>the same shape and the same
keylists</b>.
<!-- ================================================================ -->
<h2>Emit-all statements</h2>
<p/>Use <b>emit all</b> (or <tt>emit @*</tt> which is synonymous) to output all
out-of-stream variables. You can use the following idiom to get various
accumulators output side-by-side (reminiscent of <tt>mlr stats1</tt>):
POKI_RUN_COMMAND{{mlr --from data/small --opprint put -q '@v[$a][$b]["sum"] += $x; @v[$a][$b]["count"] += 1; end{emit @*,"a","b"}'}}HERE
POKI_RUN_COMMAND{{mlr --from data/small --opprint put -q '@sum[$a][$b] += $x; @count[$a][$b] += 1; end{emit @*,"a","b"}'}}HERE
POKI_RUN_COMMAND{{mlr --from data/small --opprint put -q '@sum[$a][$b] += $x; @count[$a][$b] += 1; end{emit (@sum, @count),"a","b"}'}}HERE
</div>
<!-- ================================================================ -->
<h1>Unset statements</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_unset_statements');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_unset_statements" style="display: block">
<p/>You can clear a map key by assigning the empty string as its value: <tt>$x=""</tt> or <tt>@x=""</tt>.
Using <tt>unset</tt> you can remove the key entirely. Examples:
POKI_RUN_COMMAND{{cat data/small}}HERE
POKI_RUN_COMMAND{{mlr put 'unset $x, $a' data/small}}HERE
<p/>This can also be done, of course, using <tt>mlr cut -x</tt>. You can also
clear out-of-stream or local variables, at the base name level, or at an
indexed sublevel:
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { dump; unset @sum; dump }' data/small}}HERE
POKI_RUN_COMMAND{{mlr put -q '@sum[$a][$b] += $x; end { dump; unset @sum["eks"]; dump }' data/small}}HERE
<p/>If you use <tt>unset all</tt> (or <tt>unset @*</tt> which is synonymous), that will unset all out-of-stream
variables which have been defined up to that point.
</div>
<!-- ================================================================ -->
<h1>Filter statements</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_filter_statements');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_filter_statements" style="display: block">
<p/> You can use <tt>filter</tt> within <tt>put</tt>. In fact, the
following two are synonymous:
POKI_RUN_COMMAND{{mlr filter 'NR==2 || NR==3' data/small}}HERE
POKI_RUN_COMMAND{{mlr put 'filter NR==2 || NR==3' data/small}}HERE
<p/>The former, of course, is much easier to type. But the latter allows you to define more complex expressions
for the filter, and/or do other things in addition to the filter:
POKI_RUN_COMMAND{{mlr put '@running_sum += $x; filter @running_sum > 1.3' data/small}}HERE
POKI_RUN_COMMAND{{mlr put '$z = $x * $y; filter $z > 0.3' data/small}}HERE
</div>
<!-- ================================================================ -->
<h1>Built-in functions for filter and put</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_built_in_functions');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_built_in_functions" style="display: block">
<p/>Each function takes a specific number of arguments, as shown below, except
for functions marked as variadic such as <tt>min</tt> and <tt>max</tt>. (The
latter compute min and max of any number of numerical arguments.) There is no
notion of optional or default-on-absent arguments. All argument-passing is
positional rather than by name; arguments are passed by value, not by
reference.
<p/>You can get a list of all functions using <b>mlr -F</b>.
<!--
POKI_RUN_UNESCAPED(mk-func-h2s.sh)HERE
... or just run the .sh into this file, e.g. '.!mk-func-h2s.sh' in vim
mk-func-h2s.sh
-->
<h2>+</h2>
<p/>
<div class="pokipanel">
<pre>
+ (class=arithmetic #args=2): Addition.
+ (class=arithmetic #args=1): Unary plus.
</pre>
</div>
<h2>-</h2>
<p/>
<div class="pokipanel">
<pre>
- (class=arithmetic #args=2): Subtraction.
- (class=arithmetic #args=1): Unary minus.
</pre>
</div>
<h2>*</h2>
<p/>
<div class="pokipanel">
<pre>
* (class=arithmetic #args=2): Multiplication.
</pre>
</div>
<h2>/</h2>
<p/>
<div class="pokipanel">
<pre>
/ (class=arithmetic #args=2): Division.
</pre>
</div>
<h2>//</h2>
<p/>
<div class="pokipanel">
<pre>
// (class=arithmetic #args=2): Integer division: rounds to negative (pythonic).
</pre>
</div>
<h2>%</h2>
<p/>
<div class="pokipanel">
<pre>
% (class=arithmetic #args=2): Remainder; never negative-valued (pythonic).
</pre>
</div>
<h2>**</h2>
<p/>
<div class="pokipanel">
<pre>
** (class=arithmetic #args=2): Exponentiation; same as pow, but as an infix
operator.
</pre>
</div>
<h2>|</h2>
<p/>
<div class="pokipanel">
<pre>
| (class=arithmetic #args=2): Bitwise OR.
</pre>
</div>
<h2>^</h2>
<p/>
<div class="pokipanel">
<pre>
^ (class=arithmetic #args=2): Bitwise XOR.
</pre>
</div>
<h2>&</h2>
<p/>
<div class="pokipanel">
<pre>
& (class=arithmetic #args=2): Bitwise AND.
</pre>
</div>
<h2>~</h2>
<p/>
<div class="pokipanel">
<pre>
~ (class=arithmetic #args=1): Bitwise NOT. Beware '$y=~$x' since =~ is the
regex-match operator: try '$y = ~$x'.
</pre>
</div>
<h2><<</h2>
<p/>
<div class="pokipanel">
<pre>
<< (class=arithmetic #args=2): Bitwise left-shift.
</pre>
</div>
<h2>>></h2>
<p/>
<div class="pokipanel">
<pre>
>> (class=arithmetic #args=2): Bitwise right-shift.
</pre>
</div>
<h2>==</h2>
<p/>
<div class="pokipanel">
<pre>
== (class=boolean #args=2): String/numeric equality. Mixing number and string
results in string compare.
</pre>
</div>
<h2>!=</h2>
<p/>
<div class="pokipanel">
<pre>
!= (class=boolean #args=2): String/numeric inequality. Mixing number and string
results in string compare.
</pre>
</div>
<h2>=~</h2>
<p/>
<div class="pokipanel">
<pre>
=~ (class=boolean #args=2): String (left-hand side) matches regex (right-hand
side), e.g. '$name =~ "^a.*b$"'.
</pre>
</div>
<h2>!=~</h2>
<p/>
<div class="pokipanel">
<pre>
!=~ (class=boolean #args=2): String (left-hand side) does not match regex
(right-hand side), e.g. '$name !=~ "^a.*b$"'.
</pre>
</div>
<h2>></h2>
<p/>
<div class="pokipanel">
<pre>
> (class=boolean #args=2): String/numeric greater-than. Mixing number and string
results in string compare.
</pre>
</div>
<h2>>=</h2>
<p/>
<div class="pokipanel">
<pre>
>= (class=boolean #args=2): String/numeric greater-than-or-equals. Mixing number
and string results in string compare.
</pre>
</div>
<h2><</h2>
<p/>
<div class="pokipanel">
<pre>
< (class=boolean #args=2): String/numeric less-than. Mixing number and string
results in string compare.
</pre>
</div>
<h2><=</h2>
<p/>
<div class="pokipanel">
<pre>
<= (class=boolean #args=2): String/numeric less-than-or-equals. Mixing number
and string results in string compare.
</pre>
</div>
<h2>&&</h2>
<p/>
<div class="pokipanel">
<pre>
&& (class=boolean #args=2): Logical AND.
</pre>
</div>
<h2>||</h2>
<p/>
<div class="pokipanel">
<pre>
|| (class=boolean #args=2): Logical OR.
</pre>
</div>
<h2>^^</h2>
<p/>
<div class="pokipanel">
<pre>
^^ (class=boolean #args=2): Logical XOR.
</pre>
</div>
<h2>!</h2>
<p/>
<div class="pokipanel">
<pre>
! (class=boolean #args=1): Logical negation.
</pre>
</div>
<h2>? :</h2>
<p/>
<div class="pokipanel">
<pre>
? : (class=boolean #args=3): Ternary operator.
</pre>
</div>
<h2>.</h2>
<p/>
<div class="pokipanel">
<pre>
. (class=string #args=2): String concatenation.
</pre>
</div>
<h2>abs</h2>
<p/>
<div class="pokipanel">
<pre>
abs (class=math #args=1): Absolute value.
</pre>
</div>
<h2>acos</h2>
<p/>
<div class="pokipanel">
<pre>
acos (class=math #args=1): Inverse trigonometric cosine.
</pre>
</div>
<h2>acosh</h2>
<p/>
<div class="pokipanel">
<pre>
acosh (class=math #args=1): Inverse hyperbolic cosine.
</pre>
</div>
<h2>asin</h2>
<p/>
<div class="pokipanel">
<pre>
asin (class=math #args=1): Inverse trigonometric sine.
</pre>
</div>
<h2>asinh</h2>
<p/>
<div class="pokipanel">
<pre>
asinh (class=math #args=1): Inverse hyperbolic sine.
</pre>
</div>
<h2>asserting_absent</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_absent (class=typing #args=1): Returns argument if it is absent in the input data, else
throws an error.
</pre>
</div>
<h2>asserting_bool</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_bool (class=typing #args=1): Returns argument if it is present with boolean value, else
throws an error.
</pre>
</div>
<h2>asserting_boolean</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_boolean (class=typing #args=1): Returns argument if it is present with boolean value, else
throws an error.
</pre>
</div>
<h2>asserting_empty</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_empty (class=typing #args=1): Returns argument if it is present in input with empty value,
else throws an error.
</pre>
</div>
<h2>asserting_empty_map</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_empty_map (class=typing #args=1): Returns argument if it is a map with empty value, else
throws an error.
</pre>
</div>
<h2>asserting_float</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_float (class=typing #args=1): Returns argument if it is present with float value, else
throws an error.
</pre>
</div>
<h2>asserting_int</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_int (class=typing #args=1): Returns argument if it is present with int value, else
throws an error.
</pre>
</div>
<h2>asserting_map</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_map (class=typing #args=1): Returns argument if it is a map, else throws an error.
</pre>
</div>
<h2>asserting_nonempty_map</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_nonempty_map (class=typing #args=1): Returns argument if it is a non-empty map, else throws
an error.
</pre>
</div>
<h2>asserting_not_empty</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_not_empty (class=typing #args=1): Returns argument if it is present in input with non-empty
value, else throws an error.
</pre>
</div>
<h2>asserting_not_map</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_not_map (class=typing #args=1): Returns argument if it is not a map, else throws an error.
</pre>
</div>
<h2>asserting_not_null</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_not_null (class=typing #args=1): Returns argument if it is non-null (non-empty and non-absent),
else throws an error.
</pre>
</div>
<h2>asserting_null</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_null (class=typing #args=1): Returns argument if it is null (empty or absent), else throws
an error.
</pre>
</div>
<h2>asserting_numeric</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_numeric (class=typing #args=1): Returns argument if it is present with int or float value,
else throws an error.
</pre>
</div>
<h2>asserting_present</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_present (class=typing #args=1): Returns argument if it is present in input, else throws
an error.
</pre>
</div>
<h2>asserting_string</h2>
<p/>
<div class="pokipanel">
<pre>
asserting_string (class=typing #args=1): Returns argument if it is present with string (including
empty-string) value, else throws an error.
</pre>
</div>
<h2>atan</h2>
<p/>
<div class="pokipanel">
<pre>
atan (class=math #args=1): One-argument arctangent.
</pre>
</div>
<h2>atan2</h2>
<p/>
<div class="pokipanel">
<pre>
atan2 (class=math #args=2): Two-argument arctangent.
</pre>
</div>
<h2>atanh</h2>
<p/>
<div class="pokipanel">
<pre>
atanh (class=math #args=1): Inverse hyperbolic tangent.
</pre>
</div>
<h2>boolean</h2>
<p/>
<div class="pokipanel">
<pre>
boolean (class=conversion #args=1): Convert int/float/bool/string to boolean.
</pre>
</div>
<h2>cbrt</h2>
<p/>
<div class="pokipanel">
<pre>
cbrt (class=math #args=1): Cube root.
</pre>
</div>
<h2>ceil</h2>
<p/>
<div class="pokipanel">
<pre>
ceil (class=math #args=1): Ceiling: nearest integer at or above.
</pre>
</div>
<h2>cos</h2>
<p/>
<div class="pokipanel">
<pre>
cos (class=math #args=1): Trigonometric cosine.
</pre>
</div>
<h2>cosh</h2>
<p/>
<div class="pokipanel">
<pre>
cosh (class=math #args=1): Hyperbolic cosine.
</pre>
</div>
<h2>depth</h2>
<p/>
<div class="pokipanel">
<pre>
depth (class=maps #args=1): Prints maximum depth of hashmap: ''. Scalars have depth 0.
</pre>
</div>
<h2>dhms2fsec</h2>
<p/>
<div class="pokipanel">
<pre>
dhms2fsec (class=time #args=1): Recovers floating-point seconds as in
dhms2fsec("5d18h53m20.250000s") = 500000.250000
</pre>
</div>
<h2>dhms2sec</h2>
<p/>
<div class="pokipanel">
<pre>
dhms2sec (class=time #args=1): Recovers integer seconds as in
dhms2sec("5d18h53m20s") = 500000
</pre>
</div>
<h2>erf</h2>
<p/>
<div class="pokipanel">
<pre>
erf (class=math #args=1): Error function.
</pre>
</div>
<h2>erfc</h2>
<p/>
<div class="pokipanel">
<pre>
erfc (class=math #args=1): Complementary error function.
</pre>
</div>
<h2>exp</h2>
<p/>
<div class="pokipanel">
<pre>
exp (class=math #args=1): Exponential function e**x.
</pre>
</div>
<h2>expm1</h2>
<p/>
<div class="pokipanel">
<pre>
expm1 (class=math #args=1): e**x - 1.
</pre>
</div>
<h2>float</h2>
<p/>
<div class="pokipanel">
<pre>
float (class=conversion #args=1): Convert int/float/bool/string to float.
</pre>
</div>
<h2>floor</h2>
<p/>
<div class="pokipanel">
<pre>
floor (class=math #args=1): Floor: nearest integer at or below.
</pre>
</div>
<h2>fmtnum</h2>
<p/>
<div class="pokipanel">
<pre>
fmtnum (class=conversion #args=2): Convert int/float/bool to string using
printf-style format string, e.g. '$s = fmtnum($n, "%06lld")'.
</pre>
</div>
<h2>fsec2dhms</h2>
<p/>
<div class="pokipanel">
<pre>
fsec2dhms (class=time #args=1): Formats floating-point seconds as in
fsec2dhms(500000.25) = "5d18h53m20.250000s"
</pre>
</div>
<h2>fsec2hms</h2>
<p/>
<div class="pokipanel">
<pre>
fsec2hms (class=time #args=1): Formats floating-point seconds as in
fsec2hms(5000.25) = "01:23:20.250000"
</pre>
</div>
<h2>gmt2sec</h2>
<p/>
<div class="pokipanel">
<pre>
gmt2sec (class=time #args=1): Parses GMT timestamp as integer seconds since
the epoch.
</pre>
</div>
<h2>gsub</h2>
<p/>
<div class="pokipanel">
<pre>
gsub (class=string #args=3): Example: '$name=gsub($name, "old", "new")'
(replace all).
</pre>
</div>
<h2>haskey</h2>
<p/>
<div class="pokipanel">
<pre>
haskey (class=maps #args=2): True/false if map has/hasn't key, e.g. 'haskey($*, "a")' or
'haskey(mymap, mykey)'. Error if 1st argument is not a map.
</pre>
</div>
<h2>hexfmt</h2>
<p/>
<div class="pokipanel">
<pre>
hexfmt (class=conversion #args=1): Convert int to string, e.g. 255 to "0xff".
</pre>
</div>
<h2>hms2fsec</h2>
<p/>
<div class="pokipanel">
<pre>
hms2fsec (class=time #args=1): Recovers floating-point seconds as in
hms2fsec("01:23:20.250000") = 5000.250000
</pre>
</div>
<h2>hms2sec</h2>
<p/>
<div class="pokipanel">
<pre>
hms2sec (class=time #args=1): Recovers integer seconds as in
hms2sec("01:23:20") = 5000
</pre>
</div>
<h2>int</h2>
<p/>
<div class="pokipanel">
<pre>
int (class=conversion #args=1): Convert int/float/bool/string to int.
</pre>
</div>
<h2>invqnorm</h2>
<p/>
<div class="pokipanel">
<pre>
invqnorm (class=math #args=1): Inverse of normal cumulative distribution
function. Note that invqorm(urand()) is normally distributed.
</pre>
</div>
<h2>is_absent</h2>
<p/>
<div class="pokipanel">
<pre>
is_absent (class=typing #args=1): False if field is present in input, false otherwise
</pre>
</div>
<h2>is_bool</h2>
<p/>
<div class="pokipanel">
<pre>
is_bool (class=typing #args=1): True if field is present with boolean value. Synonymous with is_boolean.
</pre>
</div>
<h2>is_boolean</h2>
<p/>
<div class="pokipanel">
<pre>
is_boolean (class=typing #args=1): True if field is present with boolean value. Synonymous with is_bool.
</pre>
</div>
<h2>is_empty</h2>
<p/>
<div class="pokipanel">
<pre>
is_empty (class=typing #args=1): True if field is present in input with empty string value, false otherwise.
</pre>
</div>
<h2>is_empty_map</h2>
<p/>
<div class="pokipanel">
<pre>
is_empty_map (class=typing #args=1): True if argument is a map which is empty.
</pre>
</div>
<h2>is_float</h2>
<p/>
<div class="pokipanel">
<pre>
is_float (class=typing #args=1): True if field is present with value inferred to be float
</pre>
</div>
<h2>is_int</h2>
<p/>
<div class="pokipanel">
<pre>
is_int (class=typing #args=1): True if field is present with value inferred to be int
</pre>
</div>
<h2>is_map</h2>
<p/>
<div class="pokipanel">
<pre>
is_map (class=typing #args=1): True if argument is a map.
</pre>
</div>
<h2>is_nonempty_map</h2>
<p/>
<div class="pokipanel">
<pre>
is_nonempty_map (class=typing #args=1): True if argument is a map which is non-empty.
</pre>
</div>
<h2>is_not_empty</h2>
<p/>
<div class="pokipanel">
<pre>
is_not_empty (class=typing #args=1): False if field is present in input with empty value, false otherwise
</pre>
</div>
<h2>is_not_map</h2>
<p/>
<div class="pokipanel">
<pre>
is_not_map (class=typing #args=1): True if argument is not a map.
</pre>
</div>
<h2>is_not_null</h2>
<p/>
<div class="pokipanel">
<pre>
is_not_null (class=typing #args=1): False if argument is null (empty or absent), true otherwise.
</pre>
</div>
<h2>is_null</h2>
<p/>
<div class="pokipanel">
<pre>
is_null (class=typing #args=1): True if argument is null (empty or absent), false otherwise.
</pre>
</div>
<h2>is_numeric</h2>
<p/>
<div class="pokipanel">
<pre>
is_numeric (class=typing #args=1): True if field is present with value inferred to be int or float
</pre>
</div>
<h2>is_present</h2>
<p/>
<div class="pokipanel">
<pre>
is_present (class=typing #args=1): True if field is present in input, false otherwise.
</pre>
</div>
<h2>is_string</h2>
<p/>
<div class="pokipanel">
<pre>
is_string (class=typing #args=1): True if field is present with string (including empty-string) value
</pre>
</div>
<h2>joink</h2>
<p/>
<div class="pokipanel">
<pre>
joink (class=maps #args=2): Makes string from map keys. E.g. 'joink($*, ",")'.
</pre>
</div>
<h2>joinkv</h2>
<p/>
<div class="pokipanel">
<pre>
joinkv (class=maps #args=3): Makes string from map key-value pairs. E.g. 'joinkv(@v[2], "=", ",")'
</pre>
</div>
<h2>joinv</h2>
<p/>
<div class="pokipanel">
<pre>
joinv (class=maps #args=2): Makes string from map keys. E.g. 'joinv(mymap, ",")'.
</pre>
</div>
<h2>leafcount</h2>
<p/>
<div class="pokipanel">
<pre>
leafcount (class=maps #args=1): Counts total number of terminal values in hashmap. For single-level maps,
same as length.
</pre>
</div>
<h2>length</h2>
<p/>
<div class="pokipanel">
<pre>
length (class=maps #args=1): Counts number of top-level entries in hashmap. Scalars have length 1.
</pre>
</div>
<h2>log</h2>
<p/>
<div class="pokipanel">
<pre>
log (class=math #args=1): Natural (base-e) logarithm.
</pre>
</div>
<h2>log10</h2>
<p/>
<div class="pokipanel">
<pre>
log10 (class=math #args=1): Base-10 logarithm.
</pre>
</div>
<h2>log1p</h2>
<p/>
<div class="pokipanel">
<pre>
log1p (class=math #args=1): log(1-x).
</pre>
</div>
<h2>logifit</h2>
<p/>
<div class="pokipanel">
<pre>
logifit (class=math #args=3): Given m and b from logistic regression, compute
fit: $yhat=logifit($x,$m,$b).
</pre>
</div>
<h2>madd</h2>
<p/>
<div class="pokipanel">
<pre>
madd (class=math #args=3): a + b mod m (integers)
</pre>
</div>
<h2>mapdiff</h2>
<p/>
<div class="pokipanel">
<pre>
mapdiff (class=maps variadic): With 0 args, returns empty map. With 1 arg, returns copy of arg.
With 2 or more, returns copy of arg 1 with all keys from any of remaining argument maps removed.
</pre>
</div>
<h2>mapsum</h2>
<p/>
<div class="pokipanel">
<pre>
mapsum (class=maps variadic): With 0 args, returns empty map. With >= 1 arg, returns a map with
key-value pairs from all arguments. Rightmost collisions win, e.g. 'mapsum({1:2,3,4},{1:5})' is '{1:5,3:4}'.
</pre>
</div>
<h2>max</h2>
<p/>
<div class="pokipanel">
<pre>
max (class=math variadic): max of n numbers; null loses
</pre>
</div>
<h2>mexp</h2>
<p/>
<div class="pokipanel">
<pre>
mexp (class=math #args=3): a ** b mod m (integers)
</pre>
</div>
<h2>min</h2>
<p/>
<div class="pokipanel">
<pre>
min (class=math variadic): Min of n numbers; null loses
</pre>
</div>
<h2>mmul</h2>
<p/>
<div class="pokipanel">
<pre>
mmul (class=math #args=3): a * b mod m (integers)
</pre>
</div>
<h2>msub</h2>
<p/>
<div class="pokipanel">
<pre>
msub (class=math #args=3): a - b mod m (integers)
</pre>
</div>
<h2>pow</h2>
<p/>
<div class="pokipanel">
<pre>
pow (class=math #args=2): Exponentiation; same as **.
</pre>
</div>
<h2>qnorm</h2>
<p/>
<div class="pokipanel">
<pre>
qnorm (class=math #args=1): Normal cumulative distribution function.
</pre>
</div>
<h2>round</h2>
<p/>
<div class="pokipanel">
<pre>
round (class=math #args=1): Round to nearest integer.
</pre>
</div>
<h2>roundm</h2>
<p/>
<div class="pokipanel">
<pre>
roundm (class=math #args=2): Round to nearest multiple of m: roundm($x,$m) is
the same as round($x/$m)*$m
</pre>
</div>
<h2>sec2dhms</h2>
<p/>
<div class="pokipanel">
<pre>
sec2dhms (class=time #args=1): Formats integer seconds as in sec2dhms(500000)
= "5d18h53m20s"
</pre>
</div>
<h2>sec2gmt</h2>
<p/>
<div class="pokipanel">
<pre>
sec2gmt (class=time #args=1): Formats seconds since epoch (integer part)
as GMT timestamp, e.g. sec2gmt(1440768801.7) = "2015-08-28T13:33:21Z".
Leaves non-numbers as-is.
</pre>
</div>
<h2>sec2gmtdate</h2>
<p/>
<div class="pokipanel">
<pre>
sec2gmtdate (class=time #args=1): Formats seconds since epoch (integer part)
as GMT timestamp with year-month-date, e.g. sec2gmtdate(1440768801.7) = "2015-08-28".
Leaves non-numbers as-is.
</pre>
</div>
<h2>sec2hms</h2>
<p/>
<div class="pokipanel">
<pre>
sec2hms (class=time #args=1): Formats integer seconds as in
sec2hms(5000) = "01:23:20"
</pre>
</div>
<h2>sgn</h2>
<p/>
<div class="pokipanel">
<pre>
sgn (class=math #args=1): +1 for positive input, 0 for zero input, -1 for
negative input.
</pre>
</div>
<h2>sin</h2>
<p/>
<div class="pokipanel">
<pre>
sin (class=math #args=1): Trigonometric sine.
</pre>
</div>
<h2>sinh</h2>
<p/>
<div class="pokipanel">
<pre>
sinh (class=math #args=1): Hyperbolic sine.
</pre>
</div>
<h2>splitkv</h2>
<p/>
<div class="pokipanel">
<pre>
splitkv (class=maps #args=3): Splits string by separators into map with type inference.
E.g. 'splitkv("a=1,b=2,c=3", "=", ",")' gives '{"a" : 1, "b" : 2, "c" : 3}'.
</pre>
</div>
<h2>splitkvx</h2>
<p/>
<div class="pokipanel">
<pre>
splitkvx (class=maps #args=3): Splits string by separators into map without type inference (keys and
values are strings). E.g. 'splitkv("a=1,b=2,c=3", "=", ",")' gives
'{"a" : "1", "b" : "2", "c" : "3"}'.
</pre>
</div>
<h2>splitnv</h2>
<p/>
<div class="pokipanel">
<pre>
splitnv (class=maps #args=2): Splits string by separator into integer-indexed map with type inference.
E.g. 'splitnv("a,b,c" , ",")' gives '{1 : "a", 2 : "b", 3 : "c"}'.
</pre>
</div>
<h2>splitnvx</h2>
<p/>
<div class="pokipanel">
<pre>
splitnvx (class=maps #args=2): Splits string by separator into integer-indexed map without type
inference (values are strings). E.g. 'splitnv("4,5,6" , ",")' gives '{1 : "4", 2 : "5", 3 : "6"}'.
</pre>
</div>
<h2>sqrt</h2>
<p/>
<div class="pokipanel">
<pre>
sqrt (class=math #args=1): Square root.
</pre>
</div>
<h2>strftime</h2>
<p/>
<div class="pokipanel">
<pre>
strftime (class=time #args=2): Formats seconds since epoch (integer part)
as timestamp, e.g.
strftime(1440768801.7,"%Y-%m-%dT%H:%M:%SZ") = "2015-08-28T13:33:21Z".
</pre>
</div>
<h2>string</h2>
<p/>
<div class="pokipanel">
<pre>
string (class=conversion #args=1): Convert int/float/bool/string to string.
</pre>
</div>
<h2>strlen</h2>
<p/>
<div class="pokipanel">
<pre>
strlen (class=string #args=1): String length.
</pre>
</div>
<h2>strptime</h2>
<p/>
<div class="pokipanel">
<pre>
strptime (class=time #args=2): Parses timestamp as integer seconds since epoch,
e.g. strptime("2015-08-28T13:33:21Z","%Y-%m-%dT%H:%M:%SZ") = 1440768801.
</pre>
</div>
<h2>sub</h2>
<p/>
<div class="pokipanel">
<pre>
sub (class=string #args=3): Example: '$name=sub($name, "old", "new")'
(replace once).
</pre>
</div>
<h2>substr</h2>
<p/>
<div class="pokipanel">
<pre>
substr (class=string #args=3): substr(s,m,n) gives substring of s from 0-up position m to n
inclusive. Negative indices -len .. -1 alias to 0 .. len-1.
</pre>
</div>
<h2>systime</h2>
<p/>
<div class="pokipanel">
<pre>
systime (class=time #args=0): Floating-point seconds since the epoch,
e.g. 1440768801.748936.
</pre>
</div>
<h2>tan</h2>
<p/>
<div class="pokipanel">
<pre>
tan (class=math #args=1): Trigonometric tangent.
</pre>
</div>
<h2>tanh</h2>
<p/>
<div class="pokipanel">
<pre>
tanh (class=math #args=1): Hyperbolic tangent.
</pre>
</div>
<h2>tolower</h2>
<p/>
<div class="pokipanel">
<pre>
tolower (class=string #args=1): Convert string to lowercase.
</pre>
</div>
<h2>toupper</h2>
<p/>
<div class="pokipanel">
<pre>
toupper (class=string #args=1): Convert string to uppercase.
</pre>
</div>
<h2>typeof</h2>
<p/>
<div class="pokipanel">
<pre>
typeof (class=conversion #args=1): Convert argument to type of argument (e.g.
MT_STRING). For debug.
</pre>
</div>
<h2>urand</h2>
<p/>
<div class="pokipanel">
<pre>
urand (class=math #args=0): Floating-point numbers on the unit interval.
Int-valued example: '$n=floor(20+urand()*11)'.
</pre>
</div>
<h2>urand32</h2>
<p/>
<div class="pokipanel">
<pre>
urand32 (class=math #args=0): Integer uniformly distributed 0 and 2**32-1
inclusive.
</pre>
</div>
<h2>urandint</h2>
<p/>
<div class="pokipanel">
<pre>
urandint (class=math #args=2): Integer uniformly distributed between inclusive
integer endpoints.
</pre>
</div>
<!-- ================================================================ -->
</div>
<!-- ================================================================ -->
<h1>User-defined functions and subroutines</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_user_defined_functions');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_user_defined_functions" style="display: block">
<p/> As of Miller 5.0.0 you can define your own functions, as well as subroutines.
<!-- ================================================================ -->
<h2>User-defined functions</h2>
<p/>Here&rsquo;s the obligatory example of a recursive function to compute the factorial function:
POKI_INCLUDE_AND_RUN_ESCAPED(data/factorial-example.sh)HERE
<p/>Properties of user-defined functions:
<ul>
<li/> Function bodies start with <tt>func</tt> and a parameter list, defined
outside of <tt>begin</tt>, <tt>end</tt>, or other <tt>func</tt> or
<tt>subr</tt> blocks. (I.e. the Miller DSL has no nested functions.)
<li/> A function (uniqified by its name) may not be redefined: either by
redefining a user-defined function, or by redefining a built-in function.
However, functions and subroutines have separate namespaces: you can define a
subroutine <tt>log</tt> which does not clash with the mathematical <tt>log</tt>
function.
<li/> Functions may be defined either before or after use (there is an
object-binding/linkage step at startup). More specifically, functions may be
either recursive or mutually recursive. Functions may not call subroutines.
<li/> Functions may be defined and called either within <tt>mlr put</tt> or
<tt>mlr put</tt>.
<li/> Functions have read access to <tt>$</tt>-variables and
<tt>@</tt>-variables but may not modify them.
See also
<a href="cookbook.html#Memoization_with_out-of-stream_variables">this cookbook item</a> for an example.
<li/> Argument values may be reassigned: they are not read-only.
<li/> When a return value is not implicitly returned, this results in a return
value of absent-null. (In the example above, if there were records for which
the argument to <tt>f</tt> is non-numeric, the assignments would be skipped.)
See also the section on
<a href="#Null_data:_empty_and_absent">empty_and_absent null data</a>.
<li/> See the section on <a href="#Local_variables">local variables</a> for
information on scope and extent of arguments, as well as for information on the
use of local variables within functions.
<li/> See the section on <a href="#Expressions_from_files">expressions from
files</a> for information on the use of <tt>-f</tt> and <tt>-e</tt> flags.
</ul>
<!-- ================================================================ -->
<h2>User-defined subroutines</h2>
<p/>Example:
POKI_INCLUDE_AND_RUN_ESCAPED(data/subr-example.sh)HERE
<p/>Properties of user-defined subroutines:
<ul>
<li/> Subroutine bodies start with <tt>subr</tt> and a parameter list, defined
outside of <tt>begin</tt>, <tt>end</tt>, or other <tt>func</tt> or
<tt>subr</tt> blocks. (I.e. the Miller DSL has no nested subroutines.)
<li/> A subroutine (uniqified by its name) may not be redefined.
However, functions and subroutines have separate namespaces: you can define a
subroutine <tt>log</tt> which does not clash with the mathematical <tt>log</tt>
function.
<li/> Subroutines may be defined either before or after use (there is an
object-binding/linkage step at startup). More specifically, subroutines may be
either recursive or mutually recursive. Subroutines may call functions.
<li/> Subroutines may be defined and called either within <tt>mlr put</tt> or
<tt>mlr put</tt>.
<li/> Subroutines have read/write access to <tt>$</tt>-variables and
<tt>@</tt>-variables.
<li/> Argument values may be reassigned: they are not read-only.
<li/> See the section on <a href="#Local_variables">local variables</a> for
information on scope and extent of arguments, as well as for information on the
use of local variables within functions.
<li/> See the section on <a href="#Expressions_from_files">expressions from
files</a> for information on the use of <tt>-f</tt> and <tt>-e</tt> flags.
</ul>
</div>
<!-- ================================================================ -->
<h1>Errors and transparency</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_transparency');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_transparency" style="display: block">
<p/>As soon as you have a programming language, you start having the problem
<i>What is my code doing, and why?</i> This includes getting syntax errors
&mdash; which are always annoying &mdash; as well as the even more annoying
problem of a program which parses without syntax error but doesn&rsquo;t do
what you expect.
<p/> The <tt>syntax error</tt> message is cryptic: it says <tt>syntax error at
</tt> followed by the next symbol it couldn&rsquo;t parse. This is good, but
(as of 5.0.0) it doesn&rsquo;t say things like <tt>syntax error at line 17,
character 22</tt>. Here are some common causes of syntax errors:
<ul>
<li/> Don&rsquo;t forget <tt>;</tt> at end of line, before another statement on
the next line.
<li/> Miller&rsquo;s DSL lacks the <tt>++</tt> and <tt>--</tt> operators.
<li/> Curly braces are required for the bodies of
<tt>if</tt>/<tt>while</tt>/<tt>for</tt> blocks, even when the body is a single
statement.
</ul>
<p/>Now for transparency:
<ul>
<li/>As in any language, you can do
<a href="#Print_statements"><tt>print</tt></a> (or <tt>eprint</tt> to print to
stderr). See also <a href="#Dump_statements"><tt>dump</tt></a> and <a
href="#Emit_statements"><tt>emit</tt></a>.
<li/> The <tt>-v</tt> option to <tt>mlr put</tt> and <tt>mlr filter</tt> prints
abstract syntax trees for your code. While not all details here will be of
interest to everyone, certainly this makes questions such as operator
precedence completely unambiguous.
<li/> The <tt>-T</tt> option prints a trace of each statement executed.
<li/> The <tt>-t</tt> and <tt>-a</tt> options show low-level details for the
parsing process and for stack-variable-index allocation, respectively. These
will likely be of interest to people who enjoy compilers, and probably less
useful for a more general audience.
<li/> Please see the <a href="#Type-checking">type-checking section</a> for
type declarations and type-assertions you can use to make sure expressions and
the data flowing them are evaluating as you expect. I made them optional
because one of Miller&rsquo;s important use-cases is being able to say simple
things like <tt>mlr put '$y = $x + 1' myfile.dat</tt> with a minimum of
punctuational bric-a-brac &mdash; but for programs over a few lines I generally
find that the more type-specification, the better.
</ul>
</div>
<!-- ================================================================ -->
<h1>A note on the complexity of Miller&rsquo;s expression language</h1>
<button style="font-weight:bold;color:maroon;border:0" padding=0 onclick="toggle_by_name('section_toggle_a_note_on_complexity');" href="javascript:;">Toggle section visibility</button>
<div id="section_toggle_a_note_on_complexity" style="display: block">
<p/> One of Miller&rsquo;s strengths is its brevity: it&rsquo;s much quicker
&mdash; and less error-prone &mdash; to type <tt>mlr stats1 -a sum -f x,y -g
a,b</tt> than having to track summation variables as in <tt>awk</tt>, or using
Miller&rsquo;s out-of-stream variables. And the more language features
Miller&rsquo;s put-DSL has (for-loops, if-statements, nested control
structures, user-defined functions, etc.) then the <i>less</i> powerful it
begins to seem: because of the other programming-language features it
<i>doesn&rsquo;t</i> have (classes, execptions, and so on).
<p/> When I was originally prototyping Miller in 2015, the decision I had was
whether to hand-code in a low-level language like C or Rust, with my own
hand-rolled DSL, or whether to use a higher-level language (like Python or Lua
or Nim) and let the <tt>put</tt> statements be handled by the implementation
language&rsquo;s own <tt>eval</tt>: the implementation language would take the
place of a DSL. Multiple performance experiments showed me I could get better
throughput using the former, and using C in particular &mdash; by a wide margin. So
Miller is C under the hood with a hand-rolled DSL.
<p/> I do want to keep focusing on what Miller is good at &mdash; concise
notation, low latency, and high throughput &mdash; and not add too much in
terms of high-level-language features to the DSL. That said, some sort of
customizability is a basic thing to want. As of 4.1.0 we have recursive
for/while/if structures on about the same complexity level as <tt>awk</tt>; as
of 5.0.0 we have user-defined functions and map-valued variables, again on
about the same complexity level as <tt>awk</tt> along with optional
type-declaration syntax. While I&rsquo;m excited by these powerful language
features, I hope to keep new features beyond 5.0.0 focused on Miller&rsquo;s
sweet spot which is speed plus simplicity.
</div>