-
Notifications
You must be signed in to change notification settings - Fork 7
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
Putting Series in Project #356
Comments
The traceback you're getting is a bug unrelated to our ability to store |
Here is the error I get with the newer version:
|
it seems more logical indeed! |
Open question: what would be a good widget to visualize a series ? A plot ? |
That's a very good question. I would expect it to be displayed like it is python (see examples here). It's not pretty but I have no other idea I must say. |
@MarieS-WiMLDS in your workflow, do you need to retrieve a series from the project and use it in your script? |
@thomass-dev do you agree that this message is kind of confusing:
I propose to remove the ending "yet": "Type |
yes, i started to use skore also has a link between notebooks when I have several of them in my project. Here is why I want to store series but didn't think about displaying them, as I don't really know how it could be useful in a report. |
Is it acceptable to say: series can be transformed into a list or created from a list. project.put("myserie", myserie.to_list())
[...]
myserie = project.put("myserie", myserie.to_list())
myserie = pandas.Series(myseries) What do you think ? |
Yesterday when I saw your comment I thought that you were right and indeed we don't want to have to support many types. |
This is done |
How can @MarieS-WiMLDS test it? |
The comment of @augustebaum was only on the renaming of the message exception, i.e. "yet". |
I would like to be able to store series objects in project.
Here is a piece of code that doesn't work for now:
I get:
Thanks!
The text was updated successfully, but these errors were encountered: