Skip to content

Commit

Permalink
fix(Notebook): set DPI of plot graphs to have same size on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
ibressler committed Mar 10, 2023
1 parent 42a1934 commit fef5d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/McSAS3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
"mds.store(resPath)\n",
"\n",
"# plot the loaded data\n",
"fhs, ahs = plt.subplots(nrows = 1, ncols = 1, figsize = [6, 4])\n",
"fhs, ahs = plt.subplots(nrows = 1, ncols = 1, figsize = [6, 4], dpi=100)\n",
"mds.rawData.plot('Q', 'I', yerr= 'ISigma', ax = ahs, label = 'As provided data')\n",
"mds.clippedData.plot('Q', 'I', yerr= 'ISigma', ax = ahs, label = 'clipped data')\n",
"mds.binnedData.plot('Q', 'I', yerr= 'ISigma', ax = ahs, label = 'binned data')\n",
Expand Down

0 comments on commit fef5d66

Please sign in to comment.