Adam Hughes
Adam Hughes
Read the official guide: https://docs.python.org/3/howto/pyporting.html **Only do this if all pyuvvis dependencies are python 3 compat already!** Goal is to rewrite for python 3 compat, not to do a 2...
skspec-notebooks Also should migrate the part of the code necessary for nbconfig and put in its own setup.py file? Then can use magic and so forth from that module. Don't...
Maybe make note in license that some libraries are used optionally, ie plotly?
http://pandas.pydata.org/pandas-docs/stable/internals.html#override-constructor-properties
``` Traceback (most recent call last): File "/home/glue/Desktop/scikit-spectra/skspec/logger.py", line 228, in _wraps return fcn(*args, **kwargs) File "/home/glue/Desktop/scikit-spectra/skspec/scripts/gwu_script/gwu_controller.py", line 791, in build_timespectra check_for_overlapping_time=False) File "/home/glue/Desktop/scikit-spectra/skspec/IO/gwu_interfaces.py", line 179, in from_spec_files timespec=TimeSpectra(DataFrame(dict_of_series), name=name)...
Grid seems to be default matplotlib plotting behavior, so need in `plotting.basic_plots`: ``` ax.grid(False) if grid: if grid == True: ax.grid() else: ax.grid(color=grid) #Let's any supported color in ```
See discussion on pandas mailing list that I started *\* Does pandas bundle any sample data?**
Want to do this similar to how scikit-image does it. Can probably do extensions fine, but what about version, as I have the docs on a different GH branch. https://github.com/scikit-image/scikit-image/blob/master/doc/source/conf.py
aunps[aunps > 5] but no prob w/ aunps.data[aunps.data > 5]. Traceback seems like this is a pandas error! need subclass dataframe... ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in...
If timeindex is datetime index. this returns an index of a datetime index instead of a timeindex. ``` ts = aunps_glass() ts.mean().index ```