Summary & references

Summary

  • Zen of polars (a.k.a. the polars design principles). If you’re into tidyverse, you might find the polars API design guideline familiar with tidy design principles
        - readability over saving keystrokes
        - explicit over implicit
        - aim for a single return dtype per expression
        - API should nudge to fast code
        - pure over in-place
        - undersore over concatenated words
        - minimize ambiguity

References

Here is a compilation of resources, including talks, articles, blogs and tutorials, that I studied in crafting this book.