Yes, a bit, but also some coaching could have been done earlier (like dupont serin).
But sometimes the opponent just has a great day, at least we got to see beautiful rugby. And with this BP the tournament victory almost only depends on us
Also fair to assume that Scotland would have better defended if they didn't have a 25+ points margin
Back in December, I presented at a "Fast Computing" workshop hosted by the Bank of Portugal. The videos + materials are now all available online. github.com/BPLIM/Worksh...
(Also including cool talks by @s3alfisc.bsky.social, @sebkrantz.bsky.social, and others.)
This will be available in the next version of Jarl (0.5.0):
Alt+enter
Yes it's a complement, not a replacement. They don't do the same thing
And a bit of self promotion 😄: if you use R, you could try out my new linter Jarl
jarl.etiennebacher.com
A linter often plays well with a formatter, whose job is to automatically format the code to match some rules in terms of spacing, indentation, etc
A linter could also detect correctness issues in the code, for example to find code that can never run because it comes after a return() in a function.
Another example is detecting code that we know will error if it runs.
A linter checks for several patterns of code that could / should be fixed to improve it.
For instance, some code might produce the correct output but could be slow or hard to read because it doesn't use the most appropriate function for the job. A linter could detect that and recommend a fix.
Thank you, it's always nice to read that :)
Well deserved, congrats!
#rstats tidypolars 0.17.0 is available!
tidypolars provides the tidyverse syntax while using polars for better perf.
In this release:
- support new functions from dplyr 1.2.0 (filter_out, when_any...)
- pivot_wider with lazyframe
- bug fixes
and more
News: tidypolars.etiennebacher.com/news/
Not for now, this is sth that maybe will be implemented but I have some concerns, see github.com/etiennebache...
You had a great timing, I had already planned to release today ^^
To avoid filling the terminal with tons of diagnostics, there is now a command-line option `--statistics` to quickly show the summary of diagnostics reported by Jarl.
(not trying to throw shade on dplyr of course, just an example ;-) )
0.4.0 brings a new system for suppression comments. Suppression comments allow you to ignore diagnostics on specific pieces of code. Jarl used to have some (brittle) compatibility with `lintr` comments "# nolint".
This is not the case anymore and Jarl only supports "# jarl-ignore" comments.
Jarl is now able to find unreachable code, meaning code that will never run because it's after a stop(), a return(), or a `next` in a `for` loop for example.
This can also happen if the code comes after an `if` statement where all branches return early or error, and Jarl can reliably detect that.
#rstats I'm very happy to announce Jarl 0.4.0!
Jarl is a very fast R linter, written in Rust. This release brings lots of improvements and fixes.
See the blog post: www.etiennebacher.com/posts/2026-0...
And the full changelog: jarl.etiennebacher.com/changelog
🧵 to highlight some features below
It will make it in the update:
That's a good idea, I'll try to include it in Jarl before I release 0.4.0
No idea, I've never used it. Maybe @gmcd.bsky.social can answer that
You might be interested in dbreg, it looks like there's an overlap in functionalities: github.com/grantmcdermo...
You can see some benchmarks here, with the usual caveats that benchmarks never capture all use cases:
duckdblabs.github.io/db-benchmark/
I would just suggest to give both polars and duckdb a try.
Regarding polars vs duckdb, both are super performant. The one that suits your needs best will likely depend on the usecase. I like the data frame interface of polars in both R and python since I'm not super familiar with writing SQL.
Parquet is a file format while polars or duckdb are data processing libraries so they're not comparison to be made between parquet and polars. Polars is very very fast at processing parquet files.
#rstats tidypolars 0.16.0 is available!
tidypolars provides the tidyverse syntax while using polars for better perf.
This release:
- support for unnest and separate functions (tidyr)
- new interface to export partitioned output
- and more
News: www.tidypolars.etiennebacher.com/news/#tidypo...
#rstats I've given a workshop a few days ago on handling large data (think tens to hundreds of millions of rows) with Polars in Python and in R.
Here are my introductory slides: brussels-large-data-r-python.etiennebacher.com
And the associated repo: github.com/etiennebache...
#rstats Jarl 0.3.0 is available!
Jarl is a very fast R linter, able to check and fix thousands of lines in milliseconds.
New since 0.2.0:
- 6 new rules
- ignore automatically generated files by default
- bug fixes and perf improvements
All changes: jarl.etiennebacher.com/changelog