inputData = csv
.map(d => ({...d, Variable_en: d.Variable_en == "Production per person employed (right axis)" ? "Production per person employed in 1,000 € (right axis)" : d.Variable_en + " (left axis)" }))
.map(d => ({...d, Variable_en: d.Variable_en == "Austria's market share to the EU-28 in % (left axis)" ? "Austria's market share to the EU 27 as a percentage (left axis)" : d.Variable_en }))
.map(d => ({...d, Variable_en: d.Variable_en == "Austria's market share of exports to the world in % (left axis)" ? "Austria's market share of exports to the world as a percentage (left axis)" : d.Variable_en }))
.map(d => ({...d, Variable_en: d.Variable_en == "Expenditures in the business sector on R&D in % of GDP (left axis)" ? "Expenditures in the business sector on R&D as a percentage of GDP (left axis)" : d.Variable_en }))
.map(d => ({...d, Variable_en: d.Variable_en == "Gross domestic expenditure for R&D in % of GDP (left axis)" ? "Gross domestic expenditure for R&D as a percentage of GDP (left axis)" : d.Variable_en }))