robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "name": "math_abs",
  "pyspark_version": "3.5",
  "input": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "age",
        "type": "string"
      },
      {
        "name": "salary",
        "type": "string"
      },
      {
        "name": "active",
        "type": "string"
      },
      {
        "name": "email",
        "type": "string"
      }
    ],
    "rows": [
      [
        1,
        "Alice",
        25,
        50000.0,
        true,
        "alice@example.com"
      ],
      [
        2,
        "Bob",
        30,
        60000.0,
        false,
        "bob@test.com"
      ],
      [
        3,
        "Charlie",
        35,
        70000.0,
        true,
        "charlie@company.org"
      ]
    ]
  },
  "operations": [],
  "expected": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "name",
        "type": "string"
      },
      {
        "name": "age",
        "type": "string"
      },
      {
        "name": "salary",
        "type": "string"
      },
      {
        "name": "active",
        "type": "string"
      },
      {
        "name": "email",
        "type": "string"
      }
    ],
    "rows": [
      [
        "1",
        "Alice",
        "25",
        "50000.0",
        "true",
        "alice@example.com"
      ],
      [
        "2",
        "Bob",
        "30",
        "60000.0",
        "false",
        "bob@test.com"
      ],
      [
        "3",
        "Charlie",
        "35",
        "70000.0",
        "true",
        "charlie@company.org"
      ]
    ]
  }
}