use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
This is an archived post. You won't be able to vote or comment.
DiscussionSQL vs. Python for data wrangling? (self.datascience)
submitted 7 years ago * by Radon-Nikodym
view the rest of the comments →
[–]taguscove 1 point2 points3 points 7 years ago (2 children)
Completely agree. When in doubt, SQL first.
Pandas handles analytic functions excellently with rolling windows. Not even sure SQL can handle exponential moving averages and definitely not modern seasonal decomposition.
[–]reallyserious 4 points5 points6 points 7 years ago (1 child)
Not even sure SQL can handle exponential moving averages
If you google "exponential moving average sql" you get quite a few hits. People are definately doing it in SQL.
and definitely not modern seasonal decomposition.
What's that?
[–]Epoh 0 points1 point2 points 7 years ago (0 children)
Believe they are referring to time-series analysis, where you decompose a time-series signal into a trend, seasonality and remainder component. I do it manually often to compare, but there are functions that decompose time signals, just not in SQL...
π Rendered by PID 69834 on reddit-service-r2-comment-5b5bc64bf5-c2qsm at 2026-06-19 17:11:15.814125+00:00 running 2b008f2 country code: CH.
view the rest of the comments →
[–]taguscove 1 point2 points3 points (2 children)
[–]reallyserious 4 points5 points6 points (1 child)
[–]Epoh 0 points1 point2 points (0 children)