Adam Hughes
Adam Hughes
``` if 'varunit' in kwargs: if kwargs['varunit'] != None and kwargs['varunit'] != 'dti': raise SpecError("from_csv() option 'header_dateime' requires" "varunit = 'dti' or 'None', received %s" % kwargs['varunit']) else: kwargs['varunit'] =...
We are hard-coding index into Spectrum: ``` out = cls(series.values, index=spectra.index) ``` However, what if I just sliced a single row and multiple columns. Then the index should be columns!...
Calling _transfer, but it seems like it's making intermediate dataframe and series objects. Need to refactor: ``` def boxcar(df, binwidth, axis=0): ''' Only works on boxcar for now. Also, want...
Get rid of the instances of badvalueerror and functional exceptions. In any case, need to find a way to search the entire program for them.
Areaplot with multiple lines will cut one off often. For example: ``` areaplot(ts, ax=ax) areaplot(ts*2, ax=ax) ``` Is misleading because areaplot sets the axis ylimit! Should inspect all plot elements...
When slicing and returning a series, specunit is not getting transferred. See #135 Additionally, a nice feature would be to inspect the slice and if slicing a row, if returns...
it cuts off at x=0. Thus, if data is up and down, it won't capture it.
Should integrate with plotparser; however, PLOTPARSER by default in its **repr**() and **shortrep**() outputs all of its plots. I think should first refactor PLOTPARSER so that `Spectra.plotkinds` doesn't do this:...
Imagine I have a syncrhonous dataset from 2dShiege and I wanna open it as a `Spec2d` pyuvvis object. Now, I can't because `_corr2d` is hard-coded into `Spec2d`. `_corr2d` actually is...