-
Notifications
You must be signed in to change notification settings - Fork 3
Weka hills Leapfrog demo project example #55
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
Conversation
|
When creating
I'm guessing the order of reading the csv in the folder is not deterministic. |
|
A solution could be to create a dictionary with the CSV-paths in it instead of a list |
|
Maybe we can start thinking about a convenience function to read and convert survey CSV files in a configurable manner. |
| @app.cell | ||
| def _(mo): | ||
| nb_dir = mo.notebook_location() | ||
| gi_csvs = [ | ||
| file.name | ||
| for file in nb_dir.iterdir() | ||
| if (file.is_file() and file.suffix.lower() == ".csv") | ||
| ] | ||
| gi_csvs | ||
| return (nb_dir,) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't really need this cell anymore but's I think it's nice to see what's actually in the folder.
|
Shouldn't we fix the #49
issue before merging this PR? |
Related to #49