Cristiano Varin's Avatar

Cristiano Varin

@crisvarin.bsky.social

Professor of Statistics at Ca' Foscari University (Venice). Jazz Lover.

79 Followers  |  119 Following  |  15 Posts  |  Joined: 30.11.2024
Posts Following

Posts by Cristiano Varin (@crisvarin.bsky.social)

Image of a poster to be presented at the Royal Statistical Society conference in Edinburgh, September 2025.  The main point is to generalize the idea of a ternary plot to handle 4-part compositions, by showing views through the triangular faces of a tetrahedron.  The data shown are vote counts from England, Scotland and Wales in the UK General Election of July 2024.

Image of a poster to be presented at the Royal Statistical Society conference in Edinburgh, September 2025. The main point is to generalize the idea of a ternary plot to handle 4-part compositions, by showing views through the triangular faces of a tetrahedron. The data shown are vote counts from England, Scotland and Wales in the UK General Election of July 2024.

At next week's RSS conference I'll be presenting a poster (a first for me...it's about time!)

"Tetraplot displays of UK General Election results" shows how to graph GE 2024 vote shares across 4 parties in a useful way.

Full PDF poster at:
github.com/DavidFirth/t...

26.08.2025 16:11 β€” πŸ‘ 59    πŸ” 18    πŸ’¬ 5    πŸ“Œ 5

Poster, and #rstats package for drawing tetraplots, are at github.com/DavidFirth/t...

04.09.2025 07:28 β€” πŸ‘ 11    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0
Preview
A statement from the Royal Statistical Society on the dismissal of the Commissioner of Labor Statis

Following the dismissal of Erika McEntarfer as US Commissioner of Labor Statistics, we've released a statement of concern.

At a time of global economic uncertainty, we stress the importance of the independence of statistical institutions and the protection of the integrity of official statistics.

05.08.2025 08:50 β€” πŸ‘ 47    πŸ” 22    πŸ’¬ 0    πŸ“Œ 3
Cover of the book "Three Shades of Blue: Miles Davis, John Coltrane, Bill Evans and the lost empire of cool" by James Kaplan with a cool nightime picture of a dressed-to-the-nines Miles Davis smoking under a streetlight.

Cover of the book "Three Shades of Blue: Miles Davis, John Coltrane, Bill Evans and the lost empire of cool" by James Kaplan with a cool nightime picture of a dressed-to-the-nines Miles Davis smoking under a streetlight.

Last book I read was the eminently enjoyable "Three Shades of Blue" by James Kaplan. Been years since I read a Miles biography sonice to get back to all this--with superb related context about all this jazz.

And #chicago folks: This Friday Fitzgeralds in Forest Park has a 'Kind of Blue' tribute.

20.07.2025 20:47 β€” πŸ‘ 7    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
15.07.2025 12:18 β€” πŸ‘ 20    πŸ” 1    πŸ’¬ 2    πŸ“Œ 0
Post image

Lalo Schifrin (June 21, 1932 – June 26, 2025)

27.06.2025 19:37 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

My first jazz listening! was among my dad's records, the only jazz in his collection. Blue 7 still gives me the shivers today

22.06.2025 21:46 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Consistent and Scalable Composite Likelihood Estimation of Probit Models with Crossed Random Effects Abstract. Estimation of crossed random effects models commonly requires computational costs that grow faster than linearly in the sample size N, often as f

I am very happy to share our new paper "Consistent and Scalable Composite Likelihood Estimation of Probit Models with Crossed Random Effects" with Ruggero Bellio, Swarnadip Ghosh and Art Owen. Thrilled that the paper will be published in the prestigious Biometrika academic.oup.com/biomet/artic...

26.05.2025 19:58 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

"Il nostro paese, negli ultimi anni, ha fatto grandi passi avanti, peccato che tutti gli altri vanno in macchina."

17.05.2025 08:16 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Ah, muoiono piΓΉ donne? Ma dai!

16.05.2025 00:07 β€” πŸ‘ 47    πŸ” 6    πŸ’¬ 1    πŸ“Œ 0
Post image

Ever wondered why some charts are more effective and engaging than others?

I’ll be going through all the theory, evidence and principles behind compelling data storytelling from this Wednesday.

Free to watch for anyone who is interested: www.eventbrite.co.uk/e/the-fundam...

12.05.2025 07:46 β€” πŸ‘ 317    πŸ” 77    πŸ’¬ 13    πŸ“Œ 12
Post image 10.05.2025 17:01 β€” πŸ‘ 113    πŸ” 27    πŸ’¬ 1    πŸ“Œ 0
Post image

On this date. Richard Feynman born 1918 in New York.

β€œStudy hard what interests you the most in the most undisciplined, irreverent and original manner possible.”

11.05.2025 08:06 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
A graph with rodent names on the y-axis, where the labels are all on one line

A graph with rodent names on the y-axis, where the labels are all on one line

A graph with rodent names on the y-axis, where the longer labels are spread over two lines

A graph with rodent names on the y-axis, where the longer labels are spread over two lines

R code used to generate the graph with the labels spread over two lines

msleep |>
  filter(order == "Soricomorpha") |> 
  ggplot(aes(x = sleep_total, y = name)) +
  geom_point() +
  scale_y_discrete(labels = function(x) str_wrap(x, width = 18)) +
  theme_bw()

R code used to generate the graph with the labels spread over two lines msleep |> filter(order == "Soricomorpha") |> ggplot(aes(x = sleep_total, y = name)) + geom_point() + scale_y_discrete(labels = function(x) str_wrap(x, width = 18)) + theme_bw()

One of my favourite #ggplot tricks is wrapping long axis labels so they don't take up so much space on your chart

Image 1 - Without wrapping
Image 2 - With wrapping
Image 3 - Code

#rstats

06.05.2025 22:59 β€” πŸ‘ 61    πŸ” 7    πŸ’¬ 6    πŸ“Œ 4
Post image

Miles Davis, backstage at Shrine Auditorium, 1950

03.05.2025 02:27 β€” πŸ‘ 68    πŸ” 13    πŸ’¬ 1    πŸ“Œ 1
Post image

lol who did this

26.04.2025 12:17 β€” πŸ‘ 155    πŸ” 14    πŸ’¬ 2    πŸ“Œ 1
Post image

LibertΓ !

25.04.2025 05:31 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

#rstats folks: If you have a habit of updating your library after an R upgrade by copying the old one and run update.packages().

--> DON'T DO THAT <--

Especially not with 4.5.0. You will overwrite base packages with ones from a previous version and as these are not on CRAN, things go bad.

24.04.2025 17:29 β€” πŸ‘ 40    πŸ” 19    πŸ’¬ 5    πŸ“Œ 1