import {
scaleLinear,
scaleTime,
extent,
axisLeft,
axisBottom,
timeFormat,
} from 'd3';
export const scatterPlot = () => {
let width;
let height;
let data;
let xValue;
let yValue;
let margin;
let radius;
const my = (selection) => {
data.forEach((d) => (d.date = new Date(d.date)));
const x = scaleTime()
.domain(extent(data, (d) => d.date))
.range([100, width - 50])
.nice();
const y = scaleLinear()
.domain(extent(data, yValue))
.range([height - margin.bottom, margin.top])
.nice();
const axisBottomLabelYear = axisBottom(x)
.ticks(d3.timeYear.every(1))
.tickPadding([30])
.tickFormat(timeFormat('%Y'));