Function 'descdist' works in RGui but not in RStudio

You might think I'm in the wrong category but the code below runs fine in the RGui but doesn't provide a plot in RStudio. When the code is run, RStudio provides the numerical output, but doesn't provide a graph and the computer's processor is stuck at a high power usage. I tried restarting the computer but that didn't help the outcome of the code. This is a function I use once in a while and it ran fine in the past.
I use the following R version 4.4.0 & Rstudio version 2024.04.1 Build 748.

Do I make a mistake?

Thank you for your help.

I copied the code from: https://stats.stackexchange.com/questions/132652/how-to-determine-which-distribution-fits-my-data-best

library(fitdistrplus)
x <- c(37.50,46.79,48.30,46.04,43.40,39.25,38.49,49.51,40.38,36.98,40.00,
38.49,37.74,47.92,44.53,44.91,44.91,40.00,41.51,47.92,36.98,43.40,
42.26,41.89,38.87,43.02,39.25,40.38,42.64,36.98,44.15,44.91,43.40,
49.81,38.87,40.00,52.45,53.13,47.92,52.45,44.91,29.54,27.13,35.60,
45.34,43.37,54.15,42.77,42.88,44.26,27.14,39.31,24.80,16.62,30.30,
36.39,28.60,28.53,35.84,31.10,34.55,52.65,48.81,43.42,52.49,38.00,
38.65,34.54,37.70,38.11,43.05,29.95,32.48,24.63,35.33,41.34)
fitdistrplus::descdist(x, discrete = FALSE)

After I upgraded to the latest version of RStudio, there are strange bugs in several windows in the lower right corner, I think it's a problem with the latest version of RStudio, my shapley diagrams don't show up fully and the GWalkr package doesn't wake up the shiny window directly.

1 Like

I'd anyways suggest you re-run it, I had no problem running your code, but mine came up as unable to ! image|690x369 to resolve the issue

1 Like

works here

rstudioapi::versionInfo()$long_version
[1] "2024.04.1+748"

1 Like

Thank you for your help.
I just ran the code on a personal laptop with the same R and RStudio version. That worked without an error. Maybe it is some kind of graphical issue. Tomorrow morning I will rerun the script on my company laptop that has different settings for graphics.

I think I found the issue. A few years ago, I wanted to use the font Helvetica. Therefore I downloaded packages 'systemfonts' and 'ragg'. Next, selected 'Tools > Global Options' from Posit’s main menu bar. Clicked the 'Graphics' menu at the top of the interface and, under the Backend option, I selected 'AGG' . This change should ensure that Posit renders the previews of any plots with the ragg package.

By setting the Backend option to '(Default)' I'm able to plot the Cullen and Frey graph. And when I set it back to 'Agg', Posit hangs (processor keeps working at high power consumption but nothing happens).

Thank you for your help.

Is there a way to inform Posit's software development team about this issue? it looks like a bug I can reproduce and fix. I could inform one of the administrators.

Can confirm, if I switch to AGG, it hangs. Cairoand Quartz work.

1 Like

Hi @Gerard1 -

The best way to file a bug would be to do so here:

Be sure to link back to this thread for the additional details of what you tried.

Best,
Randy

1 Like

Randy,
Thank you.
I submitted a bug report on GitHub and included the link to this discussion.
Gerard

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.