robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "name": "offset_n",
  "pyspark_version": "3.5.0",
  "input": {
    "schema": [
      {
        "name": "id",
        "type": "bigint"
      },
      {
        "name": "age",
        "type": "bigint"
      },
      {
        "name": "name",
        "type": "string"
      }
    ],
    "rows": [
      [
        1,
        25,
        "Alice"
      ],
      [
        2,
        30,
        "Bob"
      ],
      [
        3,
        35,
        "Charlie"
      ],
      [
        4,
        40,
        "David"
      ]
    ]
  },
  "operations": [
    {
      "op": "offset",
      "n": 2
    }
  ],
  "expected": {
    "schema": [
      {
        "name": "id",
        "type": "bigint"
      },
      {
        "name": "age",
        "type": "bigint"
      },
      {
        "name": "name",
        "type": "string"
      }
    ],
    "rows": [
      [
        3,
        35,
        "Charlie"
      ],
      [
        4,
        40,
        "David"
      ]
    ]
  }
}