Vinicius Oike's Avatar

Vinicius Oike

@viniciusoike

Economist and Data Scientist | https://restateinsight.com/blog São Paulo, Brazil

77
Followers
54
Following
59
Posts
23.04.2025
Joined
Posts Following

Latest posts by Vinicius Oike @viniciusoike

This is one of the best reviews I've read on the film, very nice 🎬

23.02.2026 23:14 👍 0 🔁 0 💬 0 📌 0

I do find that, for some reason, LLMs and Claude specially runs crazy with pipes, sometimes printing 100+ lines of code in a single pipe. Some crazy code like: read_csv() |> mutate(...) |> ... |> ggplot() + ...

23.02.2026 03:17 👍 1 🔁 0 💬 0 📌 0

pipes are incredible, just keep it reasonable: chain 2-4 functions at a time. While in some cases they can make a code harder to debug, I rarely find that it makes it harder to read. Also, not even sure if some packages (like leaflet) can exist without pipes.

23.02.2026 03:11 👍 2 🔁 1 💬 1 📌 0

I'm late on both of the R quarrels.

tibbles are great, just set options(pillar.width = Inf) and be happy. Nested tibbles are underrated. Only thing that bothers once in a while is the rounding of numbers.

23.02.2026 03:05 👍 3 🔁 2 💬 1 📌 0
Post image

This is the correct way to calculate the MAD of a vector in R. #rstats

23.02.2026 02:53 👍 26 🔁 4 💬 0 📌 0
Preview
‘Don’t go to the US – not with Trump in charge’: the UK tourist with a valid visa detained by ICE for six weeks Karen Newton was in America on the trip of a lifetime when she was shackled, transported and held for weeks on end. With tourism to the US under increasing strain, she says, ‘If it can happen to me, i...

We Are Nothing Like the Gestapo.

21.02.2026 06:56 👍 63 🔁 23 💬 3 📌 2
Post image

something like this

15.01.2026 21:06 👍 1 🔁 0 💬 0 📌 0

Excel is home to some of the worst data practices. Just received a sheet that's supposed to be a "heatmap". Cells are colored manually, columns are days and rows are "regions". The actual information is stored as comments inside each individual cell.

15.01.2026 21:03 👍 1 🔁 0 💬 1 📌 0

just to be clear, .direction = 'right' doesn't exist

15.01.2026 21:02 👍 0 🔁 0 💬 0 📌 0

{ggview} can print plots to Viewer (Rstudio or Positron) with true scaling. Adjust plot settings and see the final proportions immediately.

Save the plot once 👌

e.g.:
ggplot(...) +
ggview::canvas(width = 220, height = 220*2/3, units = "mm", dpi = 300)

per @nrennie.bsky.social #datavis #rstats

16.12.2025 22:53 👍 122 🔁 33 💬 3 📌 3
Post image

When I say that Claude is very good at coding in R, there are caveats.

04.11.2025 20:14 👍 1 🔁 0 💬 1 📌 0
Post image

As G10 countries succumb to simplistic populism, reckless fiscal policy and fiscal dominance of their central banks, the line between the G10 and EM is getting blurred. Real long-term interest rates in the G10 have begun to rise towards EM levels...
robinjbrooks.substack.com/p/the-global...

25.09.2025 10:03 👍 14 🔁 2 💬 0 📌 0
Video thumbnail

Closeread Prize winners are here! 🏆

Want to create engaging, scroll-based stories with your data? See stunning scrollytelling examples made with Quarto: posit.co/blog/closere...

Learn more about Closeread and its power to create dynamic narratives. Congrats winners! #Quarto #RStats #Python

24.02.2025 15:14 👍 93 🔁 27 💬 1 📌 11
Post image

Claude can be savage at times

23.09.2025 14:27 👍 1 🔁 0 💬 0 📌 0

What happens when you get lazy and don't follow your own advice...

19.09.2025 18:56 👍 2 🔁 0 💬 0 📌 0

Happy to know I'm not the only one who creates a ggplot2 theme package for every company I work with #positconf.

Not only does it standardize communication, but it also makes a great impression. theme_quintoandar() took about a day to make and led to me reporting directly to the C-level.

19.09.2025 18:55 👍 0 🔁 0 💬 0 📌 0

One strategy I'm using is to ask ClaudeCode to write a small summary of what it's done + add context for future work when it's almost done with a task. I then use /clear, ask Claude to read the document, and give it instructions on the next task.

17.09.2025 20:03 👍 1 🔁 0 💬 0 📌 0

4. Avoid auto-compacting

The last point is directly tied to this one. ClaudeCode has a context limit (the UI warns when approaching this limit) and it auto-compacts by default. The quality of compacting can sometimes be unreliable and I found it best to just workaround it.

17.09.2025 19:58 👍 0 🔁 0 💬 1 📌 0

You can ask for ClaudeCode to take notes of useful information and store it in separate md files to help build this knowledge.

17.09.2025 19:57 👍 0 🔁 0 💬 1 📌 0
Preview
Claude R Tidyverse Expert Claude R Tidyverse Expert. GitHub Gist: instantly share code, notes, and snippets.

A great example of useful context to provide Claude with (from @sarahjohnson.io) gist.github.com/sj-io/3828d6...

17.09.2025 19:55 👍 1 🔁 0 💬 1 📌 0

3. Knowledge

Anthropic recommends that you create a CLAUDE.md file to store important context. Currently, I'm experimenting with an entire claude/ directory stashed with useful content. Before starting a new task I ask Claude to read the relevant content.

17.09.2025 19:53 👍 0 🔁 0 💬 1 📌 0

Ex: I asked ClaudeCode to download an Excel file, import it in R, and make it tidy. The download, however, failed due to network issues and Claude decided to invent a dataset with fake values instead of stopping and pointing this error.

17.09.2025 19:51 👍 0 🔁 0 💬 1 📌 0

2. Manually approve

While ClaudeCode seems magical when it "just works" it often doesn't. Auto-accept can lead to errors that hard to detect since Claude can sometimes omit them and say that everything worked according to plan.

17.09.2025 19:47 👍 0 🔁 0 💬 1 📌 1

1. Make plans

Always start a new task in plan mode and invest some time making sure that Claude has a solid plan. A neat tip from Anthropic is to use "think more...", "think hard about potential issues...", "think step by step ... ".

"think" < "think hard" < "think harder" < "ultrathink."

17.09.2025 19:45 👍 0 🔁 0 💬 1 📌 0

Been working with ClaudeCode for the past ~2 months (mainly R and Quarto). My main tips:

1. Plan a lot.
2. Manually approve (auto-accept only for very simple tasks).
3. Create knowledge that can be referenced.
4. Avoid /compact and auto-compacting.

17.09.2025 19:40 👍 1 🔁 0 💬 1 📌 0

I've been using Air since switching to Positron and have been loving it. My only criticism is the styling of tibbles (it just breaks them). Apparently that has been solved

# fmt: tabular

coming soon

#PositConf

17.09.2025 19:24 👍 8 🔁 2 💬 0 📌 0
Video thumbnail

The fastest way to start using & exploring the new 2024 1-year ACS data?

R with tidycensus + mapgl.

With just a few lines of code, you can pull down any of the thousands of variables available in the new data and explore on an interactive MapLibre map.

11.09.2025 20:05 👍 25 🔁 5 💬 1 📌 0
Preview
Bolsonaro Convicted of Attempting a Coup in Brazil, Sentenced to 27 Years in Prison Brazil’s Supreme Court convicted the former president of trying to cling to power after losing the 2022 election, including a plan to assassinate his opponent.

Jair Bolsonaro was sentenced to more than 27 years in a Brazil prison for attempting a coup after losing the 2022 election.

11.09.2025 23:10 👍 997 🔁 196 💬 92 📌 86
Preview
Claude R Tidyverse Expert Claude R Tidyverse Expert. GitHub Gist: instantly share code, notes, and snippets.

I was loving Claude Code... until I tried it with #rstats. Constant errors, wouldn't use the tidyverse even when asked, "optimized" functions were slower.

Frustrated, I started a session just to teach R to Claude and summarize what it learned into a CLAUDE.md file gist.github.com/sj-io/3828d6...

21.08.2025 10:18 👍 149 🔁 30 💬 11 📌 4
Post image Post image Post image

Saw a post from an influencer telling followers to "stop using R for anything -- use Python like a normal person"

As a 10+ year R & Python user, the irony is that 2025 is the best time EVER to be using R.

Here's why:

01.09.2025 14:13 👍 46 🔁 9 💬 1 📌 0