-
Notifications
You must be signed in to change notification settings - Fork 39
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
Grape documentation #31
Comments
Hello @fxd24, when loading a graph, you can use the The documentation website is admittedly behind the documentation integrated within the package, as it is very hard to create automatically documentation for packages based on Rust bindings such as this one. I suggest you use the documentation integrated within the package, as explained below. If you have doubts about the integrated documentation, please just point them out, and I will iterate on them to try and make it more straightforward. Could you clarify what do you mean by If you are referring to the additional kwargs that can be provided to the retrievable datasets, those are the same as the from CSV. I cannot actually document them in the docstring because any additional character I add in those docstrings is multiplied by the number of graphs, leading to a considerable increase in wheel size. For any question, I am available on the discord server for a chat. For all methods, if you run: from grape import Graph
help(Graph.from_csv) you will get:
|
Thanks @LucaCappelletti94 for the fast response, this is already helpful information. Let me rephrase/change the question. |
Yes, nodes can have multiple labels and multigraphs are supported. There are many methods to do queries on these properties. I am not sure what you mean, if you try Are you using a graph loading from CSV or the datasets? Could you specify more in detail what the specific issue in question is? As said before, I am on Discord if you'd prefer to clarify the issue better. |
Hi, I've been exploring this repository to work on graphs. The report in text format of the graphs is very useful, anyhow I find it difficult to find the metadata of the graph, except the weight. The documentation also does not make it clear, because it provides basically a description of the function name and the data types, but not what these data types represent and what is the intuition behind.
One example is a when a Graph is created with the parameter additional_graph_kwargs. Where do I find which kwargs I can set?
There are other examples that are not only regarding the dataset, but graph processing in general. It is not clear what the intuition behind certain functions is.
Is there any plan on improving the documentation so that it is more likely that users use your framework?
The text was updated successfully, but these errors were encountered: