forked from extern/nushell
fix typo, update some examples and regenerate docs (#4718)
This commit is contained in:
parent
eeef9f27eb
commit
1157fcf372
@ -48,7 +48,7 @@ impl Command for Rm {
|
|||||||
)
|
)
|
||||||
.switch("recursive", "delete subdirectories recursively", Some('r'))
|
.switch("recursive", "delete subdirectories recursively", Some('r'))
|
||||||
.switch("force", "suppress error when no file", Some('f'))
|
.switch("force", "suppress error when no file", Some('f'))
|
||||||
.switch("quiet", "supress output showing files deleted", Some('q'))
|
.switch("quiet", "suppress output showing files deleted", Some('q'))
|
||||||
// .switch("interactive", "ask user to confirm action", Some('i'))
|
// .switch("interactive", "ask user to confirm action", Some('i'))
|
||||||
.rest(
|
.rest(
|
||||||
"rest",
|
"rest",
|
||||||
|
@ -81,7 +81,7 @@ impl Command for Each {
|
|||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
example: r#"[1 2 3] | each -n { |it| if $it.item == 2 { echo $"found 2 at ($it.index)!"} }"#,
|
example: r#"[1 2 3] | each -n { |it| if $it.item == 2 { echo $"found 2 at ($it.index)!"} }"#,
|
||||||
description: "Iterate over each element, print the matching value and it's index",
|
description: "Iterate over each element, print the matching value and its index",
|
||||||
result: Some(Value::List {
|
result: Some(Value::List {
|
||||||
vals: vec![Value::String {
|
vals: vec![Value::String {
|
||||||
val: "found 2 at 1!".to_string(),
|
val: "found 2 at 1!".to_string(),
|
||||||
|
@ -39,7 +39,7 @@ impl Command for ParEach {
|
|||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
example: r#"[1 2 3] | par-each -n { |it| if $it.item == 2 { echo $"found 2 at ($it.index)!"} }"#,
|
example: r#"[1 2 3] | par-each -n { |it| if $it.item == 2 { echo $"found 2 at ($it.index)!"} }"#,
|
||||||
description: "Iterate over each element, print the matching value and it's index",
|
description: "Iterate over each element, print the matching value and its index",
|
||||||
result: Some(Value::List {
|
result: Some(Value::List {
|
||||||
vals: vec![Value::String {
|
vals: vec![Value::String {
|
||||||
val: "found 2 at 1!".to_string(),
|
val: "found 2 at 1!".to_string(),
|
||||||
|
@ -32,7 +32,7 @@ impl Command for ParEachGroup {
|
|||||||
|
|
||||||
fn examples(&self) -> Vec<Example> {
|
fn examples(&self) -> Vec<Example> {
|
||||||
vec![Example {
|
vec![Example {
|
||||||
example: "echo [1 2 3 4] | par-each group 2 { $it.0 + $it.1 }",
|
example: "echo [1 2 3 4] | par-each group 2 {|it| $it.0 + $it.1 }",
|
||||||
description: "Multiplies elements in list",
|
description: "Multiplies elements in list",
|
||||||
result: None,
|
result: None,
|
||||||
}]
|
}]
|
||||||
|
@ -40,7 +40,7 @@ impl Command for SubCommand {
|
|||||||
|
|
||||||
fn examples(&self) -> Vec<Example> {
|
fn examples(&self) -> Vec<Example> {
|
||||||
vec![Example {
|
vec![Example {
|
||||||
description: "Evalulate math in the pipeline",
|
description: "Evaluate math in the pipeline",
|
||||||
example: "'10 / 4' | math eval",
|
example: "'10 / 4' | math eval",
|
||||||
result: Some(Value::Float {
|
result: Some(Value::Float {
|
||||||
val: 2.5,
|
val: 2.5,
|
||||||
|
@ -283,7 +283,7 @@ Format: #
|
|||||||
)),
|
)),
|
||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
description: "Use ansi to color text (italic bright yellow on red 'Hello' with green bold 'Nu' and purble bold 'World')",
|
description: "Use ansi to color text (italic bright yellow on red 'Hello' with green bold 'Nu' and purple bold 'World')",
|
||||||
example: r#"echo [(ansi -e '3;93;41m') Hello (ansi reset) " " (ansi gb) Nu " " (ansi pb) World (ansi reset)] | str collect"#,
|
example: r#"echo [(ansi -e '3;93;41m') Hello (ansi reset) " " (ansi gb) Nu " " (ansi pb) World (ansi reset)] | str collect"#,
|
||||||
result: Some(Value::test_string(
|
result: Some(Value::test_string(
|
||||||
"\u{1b}[3;93;41mHello\u{1b}[0m \u{1b}[1;32mNu \u{1b}[1;35mWorld\u{1b}[0m",
|
"\u{1b}[3;93;41mHello\u{1b}[0m \u{1b}[1;32mNu \u{1b}[1;35mWorld\u{1b}[0m",
|
||||||
|
@ -41,11 +41,28 @@ impl Command for Ps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn examples(&self) -> Vec<Example> {
|
fn examples(&self) -> Vec<Example> {
|
||||||
vec![Example {
|
vec![
|
||||||
description: "List the system processes",
|
Example {
|
||||||
example: "ps",
|
description: "List the system processes",
|
||||||
result: None,
|
example: "ps",
|
||||||
}]
|
result: None,
|
||||||
|
},
|
||||||
|
Example {
|
||||||
|
description: "List the top 5 system processes with the highest memory usage",
|
||||||
|
example: "ps | sort-by mem | last 5",
|
||||||
|
result: None,
|
||||||
|
},
|
||||||
|
Example {
|
||||||
|
description: "List the top 3 system processes with the highest CPU usage",
|
||||||
|
example: "ps | sort-by cpu | last 3",
|
||||||
|
result: None,
|
||||||
|
},
|
||||||
|
Example {
|
||||||
|
description: "List the system processes with 'nu' in their names",
|
||||||
|
example: "ps | where name =~ 'nu'",
|
||||||
|
result: None,
|
||||||
|
},
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ fn sets_block_run_value_for_an_empty_column() {
|
|||||||
[ Jason, Gedge, 10/11/2013, 1 ]
|
[ Jason, Gedge, 10/11/2013, 1 ]
|
||||||
[ Yehuda, Katz, 10/11/2013, '' ]
|
[ Yehuda, Katz, 10/11/2013, '' ]
|
||||||
]
|
]
|
||||||
| empty? likes -b { 1 }
|
| empty? likes -b {|_| 1 }
|
||||||
| get likes
|
| get likes
|
||||||
| math sum
|
| math sum
|
||||||
"#
|
"#
|
||||||
|
@ -33,7 +33,7 @@ fn error_when_invalid_character_set_given() {
|
|||||||
let actual = nu!(
|
let actual = nu!(
|
||||||
cwd: ".", pipeline(
|
cwd: ".", pipeline(
|
||||||
r#"
|
r#"
|
||||||
echo 'username:password' | hash base64 --character_set 'this is invalid' --encode
|
echo 'username:password' | hash base64 --character-set 'this is invalid' --encode
|
||||||
"#
|
"#
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -50,7 +50,7 @@ fn base64_decode_characterset_binhex() {
|
|||||||
let actual = nu!(
|
let actual = nu!(
|
||||||
cwd: ".", pipeline(
|
cwd: ".", pipeline(
|
||||||
r#"
|
r#"
|
||||||
echo "F@0NEPjJD97kE'&bEhFZEP3" | hash base64 --character_set binhex --decode
|
echo "F@0NEPjJD97kE'&bEhFZEP3" | hash base64 --character-set binhex --decode
|
||||||
"#
|
"#
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: alias
|
title: alias
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Alias a command (with optional flags) to a new name
|
Alias a command (with optional flags) to a new name
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: all?
|
title: all?
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Test if every element of the input matches a predicate.
|
Test if every element of the input matches a predicate.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: ansi
|
title: ansi
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Output ANSI codes to change color.
|
Output ANSI codes to change color.
|
||||||
@ -34,7 +34,7 @@ Use ansi to color text (rb = red bold, gb = green bold, pb = purple bold)
|
|||||||
> echo [(ansi rb) Hello " " (ansi gb) Nu " " (ansi pb) World (ansi reset)] | str collect
|
> echo [(ansi rb) Hello " " (ansi gb) Nu " " (ansi pb) World (ansi reset)] | str collect
|
||||||
```
|
```
|
||||||
|
|
||||||
Use ansi to color text (italic bright yellow on red 'Hello' with green bold 'Nu' and purble bold 'World')
|
Use ansi to color text (italic bright yellow on red 'Hello' with green bold 'Nu' and purple bold 'World')
|
||||||
```shell
|
```shell
|
||||||
> echo [(ansi -e '3;93;41m') Hello (ansi reset) " " (ansi gb) Nu " " (ansi pb) World (ansi reset)] | str collect
|
> echo [(ansi -e '3;93;41m') Hello (ansi reset) " " (ansi gb) Nu " " (ansi pb) World (ansi reset)] | str collect
|
||||||
```
|
```
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: ansi gradient
|
title: ansi gradient
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
draw text with a provided start and end code making a gradient
|
draw text with a provided start and end code making a gradient
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: ansi strip
|
title: ansi strip
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
strip ansi escape sequences from string
|
strip ansi escape sequences from string
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: any?
|
title: any?
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Tests if any element of the input matches a predicate.
|
Tests if any element of the input matches a predicate.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: append
|
title: append
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Append a row to the table.
|
Append a row to the table.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: benchmark
|
title: benchmark
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Time the running time of a block
|
Time the running time of a block
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: build-string
|
title: build-string
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Create a string from the arguments.
|
Create a string from the arguments.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: cal
|
title: cal
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Display a calendar.
|
Display a calendar.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: cd
|
title: cd
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Change directory.
|
Change directory.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: char
|
title: char
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Output special characters (e.g., 'newline').
|
Output special characters (e.g., 'newline').
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: clear
|
title: clear
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Clear the terminal.
|
Clear the terminal.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: collect
|
title: collect
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Collect the stream and pass it to a block.
|
Collect the stream and pass it to a block.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: columns
|
title: columns
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Show the columns in the input.
|
Show the columns in the input.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: compact
|
title: compact
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates a table with non-empty rows.
|
Creates a table with non-empty rows.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: complete
|
title: complete
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Complete the external piped in, collecting outputs and exit code
|
Complete the external piped in, collecting outputs and exit code
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: cp
|
title: cp
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Copy files.
|
Copy files.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dataframe
|
title: dataframe
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Deprecated command
|
Deprecated command
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date
|
title: date
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
date
|
date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date format
|
title: date format
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Format a given date using a format string.
|
Format a given date using a format string.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date humanize
|
title: date humanize
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Print a 'humanized' format for the date, relative to now.
|
Print a 'humanized' format for the date, relative to now.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date list-timezone
|
title: date list-timezone
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
List supported time zones.
|
List supported time zones.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date now
|
title: date now
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Get the current date.
|
Get the current date.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date to-table
|
title: date to-table
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Print the date in a structured table.
|
Print the date in a structured table.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: date to-timezone
|
title: date to-timezone
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Convert a date to a given time zone.
|
Convert a date to a given time zone.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: debug
|
title: debug
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Debug print the value(s) piped in.
|
Debug print the value(s) piped in.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: decode
|
title: decode
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Decode bytes as a string.
|
Decode bytes as a string.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: def-env
|
title: def-env
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Define a custom command, which participates in the caller environment
|
Define a custom command, which participates in the caller environment
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: def
|
title: def
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Define a custom command
|
Define a custom command
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: default
|
title: default
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Sets a default row's column if missing.
|
Sets a default row's column if missing.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: describe
|
title: describe
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Describe the value(s) piped in.
|
Describe the value(s) piped in.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: detect columns
|
title: detect columns
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
splits contents across multiple columns via the separator.
|
splits contents across multiple columns via the separator.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr
|
title: dfr
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Dataframe commands
|
Dataframe commands
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr aggregate
|
title: dfr aggregate
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Performs an aggregation operation on a dataframe and groupby object
|
Performs an aggregation operation on a dataframe and groupby object
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr all-false
|
title: dfr all-false
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns true if all values are false
|
Returns true if all values are false
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr all-true
|
title: dfr all-true
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns true if all values are true
|
Returns true if all values are true
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr append
|
title: dfr append
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Appends a new dataframe
|
Appends a new dataframe
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr arg-max
|
title: dfr arg-max
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Return index for max value in series
|
Return index for max value in series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr arg-min
|
title: dfr arg-min
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Return index for min value in series
|
Return index for min value in series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr arg-sort
|
title: dfr arg-sort
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns indexes for a sorted series
|
Returns indexes for a sorted series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr arg-true
|
title: dfr arg-true
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns indexes where values are true
|
Returns indexes where values are true
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr arg-unique
|
title: dfr arg-unique
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns indexes for unique values
|
Returns indexes for unique values
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr column
|
title: dfr column
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Returns the selected column
|
Returns the selected column
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr concatenate
|
title: dfr concatenate
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Concatenates strings with other array
|
Concatenates strings with other array
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr contains
|
title: dfr contains
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Checks if a pattern is contained in a string
|
Checks if a pattern is contained in a string
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr count-null
|
title: dfr count-null
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Counts null values
|
Counts null values
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr count-unique
|
title: dfr count-unique
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Counts unique values
|
Counts unique values
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr cumulative
|
title: dfr cumulative
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Cumulative calculation for a series
|
Cumulative calculation for a series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr describe
|
title: dfr describe
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Describes dataframes numeric columns
|
Describes dataframes numeric columns
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr drop-duplicates
|
title: dfr drop-duplicates
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Drops duplicate values in dataframe
|
Drops duplicate values in dataframe
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr drop-nulls
|
title: dfr drop-nulls
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Drops null values in dataframe
|
Drops null values in dataframe
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr drop
|
title: dfr drop
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates a new dataframe by dropping the selected columns
|
Creates a new dataframe by dropping the selected columns
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr dtypes
|
title: dfr dtypes
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Show dataframe data types
|
Show dataframe data types
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr filter-with
|
title: dfr filter-with
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Filters dataframe using a mask as reference
|
Filters dataframe using a mask as reference
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr first
|
title: dfr first
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates new dataframe with first rows
|
Creates new dataframe with first rows
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-day
|
title: dfr get-day
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets day from date
|
Gets day from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-hour
|
title: dfr get-hour
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets hour from date
|
Gets hour from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-minute
|
title: dfr get-minute
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets minute from date
|
Gets minute from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-month
|
title: dfr get-month
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets month from date
|
Gets month from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-nanosecond
|
title: dfr get-nanosecond
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets nanosecond from date
|
Gets nanosecond from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-ordinal
|
title: dfr get-ordinal
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets ordinal from date
|
Gets ordinal from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-second
|
title: dfr get-second
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets second from date
|
Gets second from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-week
|
title: dfr get-week
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets week from date
|
Gets week from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-weekday
|
title: dfr get-weekday
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets weekday from date
|
Gets weekday from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get-year
|
title: dfr get-year
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Gets year from date
|
Gets year from date
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr get
|
title: dfr get
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates dataframe with the selected columns
|
Creates dataframe with the selected columns
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr group-by
|
title: dfr group-by
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates a groupby object that can be used for other aggregations
|
Creates a groupby object that can be used for other aggregations
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr is-duplicated
|
title: dfr is-duplicated
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates mask indicating duplicated values
|
Creates mask indicating duplicated values
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr is-in
|
title: dfr is-in
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Checks if elements from a series are contained in right series
|
Checks if elements from a series are contained in right series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr is-not-null
|
title: dfr is-not-null
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates mask where value is not null
|
Creates mask where value is not null
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr is-null
|
title: dfr is-null
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates mask where value is null
|
Creates mask where value is null
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr is-unique
|
title: dfr is-unique
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates mask indicating unique values
|
Creates mask indicating unique values
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr join
|
title: dfr join
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Joins a dataframe using columns as reference
|
Joins a dataframe using columns as reference
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr last
|
title: dfr last
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates new dataframe with tail rows
|
Creates new dataframe with tail rows
|
||||||
|
19
docs/commands/dfr_list.md
Normal file
19
docs/commands/dfr_list.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
title: dfr list
|
||||||
|
layout: command
|
||||||
|
version: 0.59.1
|
||||||
|
---
|
||||||
|
|
||||||
|
Lists stored dataframes
|
||||||
|
|
||||||
|
## Signature
|
||||||
|
|
||||||
|
```> dfr list ```
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Creates a new dataframe and shows it in the dataframe list
|
||||||
|
```shell
|
||||||
|
> let test = ([[a b];[1 2] [3 4]] | dfr to-df);
|
||||||
|
dfr list
|
||||||
|
```
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr melt
|
title: dfr melt
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Unpivot a DataFrame from wide to long format
|
Unpivot a DataFrame from wide to long format
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr not
|
title: dfr not
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Inverts boolean mask
|
Inverts boolean mask
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr open
|
title: dfr open
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Opens csv, json or parquet file to create dataframe
|
Opens csv, json or parquet file to create dataframe
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr pivot
|
title: dfr pivot
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Performs a pivot operation on a groupby object
|
Performs a pivot operation on a groupby object
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr rename-col
|
title: dfr rename-col
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
rename a dataframe column
|
rename a dataframe column
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr rename
|
title: dfr rename
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Renames a series
|
Renames a series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr replace-all
|
title: dfr replace-all
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Replace all (sub)strings by a regex pattern
|
Replace all (sub)strings by a regex pattern
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr replace
|
title: dfr replace
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Replace the leftmost (sub)string by a regex pattern
|
Replace the leftmost (sub)string by a regex pattern
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr rolling
|
title: dfr rolling
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Rolling calculation for a series
|
Rolling calculation for a series
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr sample
|
title: dfr sample
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Create sample dataframe
|
Create sample dataframe
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr set-with-idx
|
title: dfr set-with-idx
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Sets value in the given index
|
Sets value in the given index
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr set
|
title: dfr set
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Sets value where given mask is true
|
Sets value where given mask is true
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr shape
|
title: dfr shape
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Shows column and row size for a dataframe
|
Shows column and row size for a dataframe
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr shift
|
title: dfr shift
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Shifts the values by a given period
|
Shifts the values by a given period
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: dfr slice
|
title: dfr slice
|
||||||
layout: command
|
layout: command
|
||||||
version: 0.59.0
|
version: 0.59.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Creates new dataframe from a slice of rows
|
Creates new dataframe from a slice of rows
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user