Home Explore Blog CI



nushell

1st chunk of `commands/categories/dataframe_or_lazyframe.md`
64bdb78de4f61997057b37ca952c0809a92439a65f1efb950000000100000306
---
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>

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.