Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

slycat-timeseries-to-hdf5.py needs x axis selection in the wizard #723

Closed
Mletter1 opened this issue May 11, 2017 · 1 comment
Closed

slycat-timeseries-to-hdf5.py needs x axis selection in the wizard #723

Mletter1 opened this issue May 11, 2017 · 1 comment

Comments

@Mletter1
Copy link
Collaborator

lines 200 - 205 need to be modified for arbitrary x axis values

      # check if an index column is present or flag it otherwise
      if isinstance(t_first_row[0], float):
        t_add_index_column = True
        t_column_names = ["Index"] + t_column_names
      else:
        t_column_names[0] = "Index"
@Mletter1
Copy link
Collaborator Author

Added an index check but we still need to implement the users ability to choose an x axis

      if getType(t_first_row[0]) is not int:
        t_add_index_column = True
        t_column_names = ["Index"] + t_column_names # always add index column
      else:
        t_column_names[0] = "Index"

@Mletter1 Mletter1 removed the ready label Feb 7, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants