From e95caa8a257f2723de0c61b01b37d79c5bde0ee9 Mon Sep 17 00:00:00 2001 From: reagle <596814+reagle@users.noreply.github.com> Date: Wed, 17 Jul 2024 11:25:08 -0400 Subject: [PATCH] guide: initial type sheet --- visidata/guides/TypesSheet.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 visidata/guides/TypesSheet.md diff --git a/visidata/guides/TypesSheet.md b/visidata/guides/TypesSheet.md new file mode 100644 index 000000000..1eaf8514b --- /dev/null +++ b/visidata/guides/TypesSheet.md @@ -0,0 +1,13 @@ +# Types + +Columns usually begin as untyped (`anytype`), but can be set. + +- {help.commands.type-any} +- {help.commands.type-currency} +- {help.commands.type-date} +- {help.commands.type-float} +- {help.commands.type-int} +- {help.commands.type-len} +- {help.commands.type-string} + +*Note*: `float` uses the decimal separator; `currency` removes non-numeric characters and parses as float; `date` parses dates into ISO8601 format; `len` formats the cell value to the length of the content. \ No newline at end of file