Home Explore Blog CI



nushell

commands/categories/dataframe.md
a149f9838033bc6af8fbf510336a24f2d01f5f5e1bf97a6b00000003000002ec
---
editLink: false
contributors: false
---

# Dataframe

<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'))
          .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
3897657a (1st chunk of `commands/categories/dataframe.md`)
Title: Cypress Dataframe Commands Documentation
Summary
This section provides documentation for Cypress commands specifically designed for working with dataframes. A dynamically generated table lists each available command, including the command's name (linked to its detailed documentation page) and a concise description of its usage. This allows users to quickly understand the purpose of each dataframe-related command within Cypress. The commands are filtered from a set of pages to ensure they are related to dataframes, and the list is sorted alphabetically by title for easy navigation. This serves as a central resource for developers using Cypress to test applications involving data manipulation and analysis with dataframes. The table format presents the command name and a short description of its usage, helping users efficiently find the right command for their testing needs.