robin-sparkless 4.4.0

PySpark-like DataFrame API in Rust on Polars; no JVM.
Documentation
{
  "name": "math_ceil",
  "pyspark_version": "3.5",
  "input": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "a",
        "type": "string"
      },
      {
        "name": "b",
        "type": "string"
      },
      {
        "name": "c",
        "type": "string"
      },
      {
        "name": "angle",
        "type": "string"
      },
      {
        "name": "value",
        "type": "string"
      }
    ],
    "rows": [
      [
        1,
        5,
        3,
        7,
        0.785,
        4.5
      ],
      [
        2,
        2,
        8,
        1,
        1.57,
        3.2
      ],
      [
        3,
        9,
        4,
        6,
        0.0,
        7.8
      ]
    ]
  },
  "operations": [],
  "expected": {
    "schema": [
      {
        "name": "id",
        "type": "string"
      },
      {
        "name": "a",
        "type": "string"
      },
      {
        "name": "b",
        "type": "string"
      },
      {
        "name": "c",
        "type": "string"
      },
      {
        "name": "angle",
        "type": "string"
      },
      {
        "name": "value",
        "type": "string"
      }
    ],
    "rows": [
      [
        "1",
        "5",
        "3",
        "7",
        "0.785",
        "4.5"
      ],
      [
        "2",
        "2",
        "8",
        "1",
        "1.57",
        "3.2"
      ],
      [
        "3",
        "9",
        "4",
        "6",
        "0.0",
        "7.8"
      ]
    ]
  }
}