Home Explore Blog CI



nushell

commands/categories/dataframe_or_lazyframe.md
f0ac6daa38138b53c0ab3bb68166528023a4b7bb04c5428f0000000300000306
---
editLink: false
contributors: false
---

# Dataframe Or Lazyframe

<script>
  import pages from '@temp/pages'
  export default {
    computed: {
      commands() {
        return pages
          .filter(p => p.path.includes('/commands/docs/'))
          .filter(p => p.frontmatter.categories.includes('dataframe or lazyframe'))
          .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0));
      }
    }
  }
</script>

<table>
  <thead>
    <tr>
      <th>Command</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr v-for="command in commands">
       <td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
       <td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
    </tr>
  </tbody>
</table>

Chunks
64bdb78d (1st chunk of `commands/categories/dataframe_or_lazyframe.md`)
Title: Dataframe or Lazyframe Commands
Summary
This section lists and describes commands in the Polars library that operate on either Dataframes or Lazyframes. The table provides the command name, linked to its documentation, and a brief description of its usage.