EGR 103/Fall 2019/Minilab 3
Jump to navigation
Jump to search
- Problem 2.5.1
- To load data froman Excel file with headers:
import pandas # %% Load data edata = pandas.read_excel('file.xlsx') col_1_stuff = edata.values[:,0].copy() col_2_stuff = edata.values[:,1].copy()
- Python:Plotting
- Python:Interpolation
- Python:Extrema
- scipy.interpolate.CubicSpline¶ at [docs.scipy.org docsscipy.org]