You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a look at very cool's @madhur-tandon work in xvega, specifically if you run the binder you'll see that xeus-sqlite is not supporting quite a few of those.
This issue is an effort to list them and try to give some pointers on how to do it. If you're getting started on C++ and would like to learn in a real project this is a very good opportunity! The PRs to resolve this issue are going to be self contained and this is a small project, so it's somewhat easy to get a grasp of everything that's going on here. Besides, this is a mentored issue, which means you can feel comfortable to ask whatever questions you might have + all maintainers of this repo are under the NumFocus code of conduct and it's a safe space.
(+- organized by order of importance, if you're a user of the lib, pls feel comfortable in calling me out on this importance list)
title
regressions
Tooltip
transformations
sort_field_def
color basic
color (there are color properties in many different properties, we have marks, but missing text, graph background [...] besides, color itself has a few other attrs. if I'm not mistaken)
improve marks (e.g mark_config().filled(true).size(200).color("red");)
In order to add these functionalities to xeus-sqlite you'll need to get somewhat familiar with xvega code.
Here's my recommended step to step to get a contribution going:
Make sure you're able to build both projects locally, xvega and xeus-sqlite
Test both project's notebooks and get familiar with basic functionalities
Choose a functionality of this list and search for it on the xvega code. Read through it and the functions that are using it, the data structures around it, etc. Just so you get a first initial idea. (Don't worry if it doesn't make a lot of sense, it's the first time you're seeing this!)
Read the xvega_bindings.cpp file on xeus-sqlite and see how the other functionalities were already integrated.
Kind of copying the pattern that you saw on 4, give it a try on implementing yours! :)
If you have a look at very cool's @madhur-tandon work in xvega, specifically if you run the binder you'll see that xeus-sqlite is not supporting quite a few of those.
This issue is an effort to list them and try to give some pointers on how to do it. If you're getting started on C++ and would like to learn in a real project this is a very good opportunity! The PRs to resolve this issue are going to be self contained and this is a small project, so it's somewhat easy to get a grasp of everything that's going on here. Besides, this is a mentored issue, which means you can feel comfortable to ask whatever questions you might have + all maintainers of this repo are under the NumFocus code of conduct and it's a safe space.
(+- organized by order of importance, if you're a user of the lib, pls feel comfortable in calling me out on this importance list)
mark_config().filled(true).size(200).color("red")
;)In order to add these functionalities to
xeus-sqlite
you'll need to get somewhat familiar withxvega
code.Here's my recommended step to step to get a contribution going:
xvega_bindings.cpp
file on xeus-sqlite and see how the other functionalities were already integrated.If you have any questions, don't hesitate to ask in our chat: https://gitter.im/QuantStack/Lobby
Someone will answer you ASAP :D
The text was updated successfully, but these errors were encountered: