Follow ______ on twitter.

2.3.3 Scatter Plots

Code

Vega-Lite Chart

{
  "hconcat": [
    {
      "title": "Positive Correlation",
      "mark": "point",
      "data": {
        "values": [
          {
            "x": 1,
            "y": 2
          },
          {
            "x": 2,
            "y": 3
          },
          {
            "x": 3,
            "y": 4
          },
          {
            "x": 4,
            "y": 5
          },
          {
            "x": 5,
            "y": 6
          },
          {
            "x": 6,
            "y": 7
          }
        ]
      },
      "encoding": {
        "x": {
          "field": "x",
          "type": "quantitative",
          "title": "Age"
        },
        "y": {
          "field": "y",
          "type": "quantitative",
          "title": "Risk Score"
        }
      }
    },
    {
      "title": "Negative Correlation",
      "mark": "point",
      "data": {
        "values": [
          {
            "x": 1,
            "y": 6
          },
          {
            "x": 2,
            "y": 5
          },
          {
            "x": 3,
            "y": 4
          },
          {
            "x": 4,
            "y": 3
          },
          {
            "x": 5,
            "y": 2
          },
          {
            "x": 6,
            "y": 1
          }
        ]
      },
      "encoding": {
        "x": {
          "field": "x",
          "type": "quantitative",
          "title": "Age"
        },
        "y": {
          "field": "y",
          "type": "quantitative",
          "title": "Risk Score"
        }
      }
    },
    {
      "title": "No Correlation",
      "mark": "point",
      "data": {
        "values": [
          {
            "x": 1,
            "y": 4
          },
          {
            "x": 2,
            "y": 1
          },
          {
            "x": 3,
            "y": 7
          },
          {
            "x": 4,
            "y": 5
          },
          {
            "x": 5,
            "y": 3
          },
          {
            "x": 6,
            "y": 2
          }
        ]
      },
      "encoding": {
        "x": {
          "field": "x",
          "type": "quantitative",
          "title": "Age"
        },
        "y": {
          "field": "y",
          "type": "quantitative",
          "title": "Risk Score"
        }
      }
    }
  ]
}