Python3: Plotting of GOLEM $U_\mathrm{loop}$ signal

Python3 source code

Result (in Jupyter notebook format)

Loading of basic libraries. The matplotlib library is used for plotting, the pandas library for data retrieval and manipulation.

The parametrized URL address to obtain CSV files from the analysis results of the basic diagnostics

Discharge number to use. The special discharge number 0 refers to the most recent discharge

The processed loop voltage signal $U_\mathrm{loop}$ is automatically downloaded and read using the Pandas library into a pandas.Series object from the specified URL.

The .plot() wrapper method for plotting with the matplotlib library automatically selects the x and y values and the plot type (line for 1D). It returns an Axes object, which is then used to label the axes and set a title.