Forrest logo
back to context overview

xsv

List of commands for xsv:

  • xsv:tldr:0e4cc xsv: Count the number of entries.
    $ xsv count ${filename-csv}
    try on your machine
    explain this command
  • xsv:tldr:5778b xsv: Show 10 random entries.
    $ xsv sample ${10} ${filename-csv}
    try on your machine
    explain this command
  • xsv:tldr:624bf xsv: Select a few columns.
    $ xsv select ${column_a,column_b} ${filename-csv}
    try on your machine
    explain this command
  • xsv:tldr:b3428 xsv: Inspect the headers of a file.
    $ xsv headers ${filename-csv}
    try on your machine
    explain this command
  • xsv:tldr:d005c xsv: Join a column from one file to another.
    $ xsv join --no-case ${column_a} ${filename-a-csv} ${column_b} ${filename-b-csv} | xsv table
    try on your machine
    explain this command
  • xsv:tldr:d78ef xsv: Get an overview of the shape of entries.
    $ xsv stats ${filename-csv} | xsv table
    try on your machine
    explain this command
back to context overview