-
Notifications
You must be signed in to change notification settings - Fork 80
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
Add dz! macro to construct (multiple dimensions) ECharts DataFrame from any number of data vectors/ columns #100
Conversation
The main objective of macro dz! is to transpose mixed data type vectors, aka columns or dimensions into ECharts dataframe format.
Can you provide some examples of how to use this macro? Some small unit test to check the correct functionality would also be great. I am not super familiar with macros that's why I am hesitant to merge this. Especially because it was generated by a LLM. |
This example was built from existing example "bubble_chart.ts".
The |
I believed the existing |
Added a simple |
Overall this looks good to me, is there any particular meaning of the macro name |
The naming of
|
Thank you very much for the implementation and especially for providing the tests and examples. I am also a big fan of noting down that some of the code was generated using LLM. |
The main objective of macro dz! is to transpose mixed data type vectors, aka columns or dimensions into ECharts dataframe format.