Useful Code

Python

import numpy as np
import matplotlib.pyplot as plt

# Create the array from 200.01 to 290 with an increment of 0.01 
array = np.arange(200.01, 290.01, 0.01) 

# output plot as svg
plt.savefig('plot.svg')