Great video thanks! Just an FYI, DuckDb's "friendly SQL" allows you to get the largest increases in Python popularity without the use of repeating the LAG(), CTE's / subqueries e.g from lang select Python, date_obs, lag(Python) over(order by date_obs) as previous_popularity, Python - previous_popularity as popularity_increase order by popularity_increase desc limit 5; DuckDb SQL allows you to refer to previously created columns without the CTE!
☕Buy a coffee: ko-fi.com/bugbytes
📹DuckDB Video: th-cam.com/video/HJGiMTLcpDs/w-d-xo.html
⭐Top resource to learn Python - datacamp.pxf.io/kOjKkV ⭐th-cam.com/users/sgaming/emoji/7ff574f2/emoji_u1f4f9.png
Marimo is my favorite notebook now, thanks for sharing!
Thanks a lot, glad you like it!
Bedankt
Thanks a lot for the super-thanks! Much appreciated.
Woow
than kyou
Thanks for watching!
Great video thanks! Just an FYI, DuckDb's "friendly SQL" allows you to get the largest increases in Python popularity without the use of repeating the LAG(), CTE's / subqueries e.g
from lang
select
Python,
date_obs,
lag(Python) over(order by date_obs) as previous_popularity,
Python - previous_popularity as popularity_increase
order by popularity_increase desc
limit 5;
DuckDb SQL allows you to refer to previously created columns without the CTE!
Ah - That's awesome to know, thank you! Really helpful and thanks for clarifying. DuckDB is amazing!
Can interface or intergrate with django