-
Notifications
You must be signed in to change notification settings - Fork 64
add FAQ #559
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
Merged
add FAQ #559
Changes from 6 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
098b67b
add faq
clewis7 6b2f373
requested changes
clewis7 a7bd2eb
more faq
clewis7 095e4f9
Update faq.rst
clewis7 c87b98c
fix intersphinx link, fix typo
clewis7 5261c88
Merge branch 'main' into faq
clewis7 92931c5
add more faq questions
clewis7 a7521a5
small edits and remove dropdowns
clewis7 4c6e7ef
requested changes
clewis7 0e8e43e
requested changes
288dd16
revert commit
clewis7 4b43d22
should be gtg
clewis7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| fastplotlib FAQ | ||
| =============== | ||
|
|
||
| .. dropdown:: What is `fastplotlib`? | ||
|
|
||
| `fastplotlib` is a scientific plotting library built on top of the `pygfx <https://github.com/pygfx/pygfx>`_ rendering engine | ||
| that leverages new graphics APIs and modern GPU hardware to create fast and interactive visualizations. | ||
|
|
||
|
|
||
| .. dropdown:: What can I do with `fastplotlib`? | ||
|
|
||
| `fastplotlib` allows for: | ||
| - interactive visualization via an intuitive and expressive API | ||
| - rapid prototyping and algorithm design | ||
| - easy exploration and fast rendering of large-scale data | ||
|
|
||
| .. dropdown:: How does `fastplotlib` relate to `matplotlib`? | ||
|
|
||
| `fastplotlib` is **not** related to `matplotlib` in any way. | ||
|
|
||
| These are two completely different libraries with their own APIs and use-cases. The `fastplotlib` library is primarily for *interactive* | ||
| visualization that runs on the GPU using WGPU. The `fastplotlib` architecture is completely different from `matplotlib`. Using `fastplotlib` | ||
| is more akin to using `numpy`. See the "How can I learn to use `fastplotlib`?" section below. | ||
|
clewis7 marked this conversation as resolved.
Outdated
|
||
|
|
||
| .. dropdown:: How can I learn to use `fastplotlib`? | ||
|
|
||
| We want `fastplotlib` to be easy to learn and use. To get started with the library we recommend taking a look at our `guide <https://fastplotlib.readthedocs.io/en/latest/user_guide/guide.html>`_ and | ||
| `examples gallery <https://fastplotlib.readthedocs.io/en/latest/_gallery/index.html>`_. | ||
|
|
||
| In general, if you are familiar with numpy and array notation you will already have a intuitive understanding of interacting | ||
| with your data in `fastplotlib`. If you have any questions, please do not hesitate to post an issue or discussion forum post. | ||
|
|
||
| .. dropdown:: Should I use `fastplotlib` for making publication figures? | ||
|
|
||
| No, `fastplotlib` is not meant for creating *static* publication figures. There are many other libraries that are well-suited | ||
| for this task. | ||
|
clewis7 marked this conversation as resolved.
Outdated
|
||
|
|
||
| .. dropdown:: How does `fastplotlib` handle data loading? | ||
|
|
||
| `fastplotlib` is a plotting library and not a data handling or data loading library. These tasks are outside of the scope of | ||
| the library. | ||
|
|
||
| In general, if your data is an array-like object, `fastplotlib` should be able to use it. | ||
|
|
||
|
clewis7 marked this conversation as resolved.
|
||
| .. dropdown:: What is the scope of `fastplotlib`? | ||
|
|
||
| While the capabilities are very far-reaching, we would like to emphasize that `fastplotlib` is a general-purpose plotting library focused on scientific visualization. | ||
| More specifically, we aim to develop the tools necessary for users to build fast and interactive visualizations for a variety of scientific domains (e.g. neuroscience, | ||
| astrophysics). If you have a particular feature in mind that you feel is missing, please post an issue and we will respond accordingly letting you know if it fits within | ||
|
clewis7 marked this conversation as resolved.
Outdated
|
||
| the scope of the project. | ||
|
|
||
| .. dropdown:: What types of PRs are we willing to accept? | ||
|
|
||
| Primarily the features of `fastplotlib` have been developed as they relate to the core-developers research use cases (mostly neuroscience). With that being said, there are many domains in which | ||
|
clewis7 marked this conversation as resolved.
Outdated
|
||
| we do not have the knowledge to best-implement the tools needed for proper visualization. We welcome all PRs that address these types of missing functionality. We | ||
| recommend taking a look at our `Roadmap <https://github.com/fastplotlib/fastplotlib/issues/55>`_ to get a better idea of what those items might be :D | ||
|
|
||
| Closely related to this, we would love to add more examples to our repo for different types of scientific visualizations. We welcome all PRs that showcase using `fastplotlib` for | ||
|
clewis7 marked this conversation as resolved.
|
||
| your given research domain. | ||
|
|
||
| Lastly, documentation is a critical part of open-source software and makes learning/using our tool much easier. We welcome all PRs that add missing or needed documentation of the | ||
| codebase. If you find a piece of the codebase that is confusing or does not have proper documentation, please also feel free to post an issue on the repo! | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.