{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "url": "https://vega.github.io/vega-lite/data/movies.json"
    },
    "encoding": {
        "x": {
            "axis": {
                "labelOffset": {
                    "condition": {
                        "test": "datum.value <= 5",
                        "value": 10
                    },
                    "value": 5
                },
                "tickCount": 20
            },
            "field": "IMDB_Rating",
            "type": "quantitative"
        },
        "y": {
            "field": "Rotten_Tomatoes_Rating",
            "type": "quantitative"
        }
    },
    "height": 600,
    "mark": {
        "opacity": 0.1,
        "type": "point"
    },
    "width": 600
}