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

Add example datasets and test cases #11

Open
klainfo opened this issue Jul 7, 2017 · 5 comments
Open

Add example datasets and test cases #11

klainfo opened this issue Jul 7, 2017 · 5 comments

Comments

@klainfo
Copy link
Owner

klainfo commented Jul 7, 2017

No description provided.

@SimonEismann
Copy link

Hey I am currently trying to get the Python version to run and I am running into the issue, that as far as I can tell, the "data.csv" that is used in the example is not contained in the project. This makes it very hard to figure out what the input data format should look like. Would it be possible to add this example file?

@klainfo
Copy link
Owner Author

klainfo commented Dec 9, 2020

@SimonEismann Hi, thanks for your questions. Here is an example of input. Please write me an email chakkrit at monash.edu if you want the example CSV file. Very happy to help with this.

TechniqueA TechniqueB TechniqueC
5 6 7
1 8 10
4 3 15

@SimonEismann
Copy link

Thank a lot, this helped in formatting my data correctly. Great package btw!

@nelsoncardenas
Copy link
Contributor

nelsoncardenas commented Oct 29, 2022

I know maybe no one needs this, but the DataFrame @klainfo talks about can be generated with this code in Python:

import pandas as pd

data = pd.DataFrame(
    {"TechniqueA": [5, 1, 4], "TechniqueB": [6, 8, 3], "TechniqueC": [7, 10, 15]}
)
data.to_csv("data.csv", index=False)

@nelsoncardenas
Copy link
Contributor

nelsoncardenas commented Feb 9, 2023

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