example data for multi-line plots
This commit is contained in:
@ -13,6 +13,12 @@ exampledata_raw = {
|
||||
}
|
||||
|
||||
|
||||
for i in range(20):
|
||||
n = f"plot{i}"
|
||||
Y = np.sin(X) + 0.2 * i
|
||||
exampledata_raw[n] = [X, Y]
|
||||
|
||||
|
||||
exampledata = {}
|
||||
for k, v in exampledata_raw.items():
|
||||
pd = PlotDescription(
|
||||
|
Reference in New Issue
Block a user