Re: [R] write.xlsx error message

2024-03-15 Thread Subia Thomas OI-US-LIV5
...@draexlmaier.com http://www.draexlmaier.com “Nous croyons en Dieu. Tous les autres doivent apporter des données. Edward Deming Public -Original Message- From: gernop...@gmx.net Sent: Friday, March 15, 2024 1:07 AM To: Subia Thomas OI-US-LIV5 ; r-help@r-project.org Subject: Aw: Re: [R

[R] write.xlsx error message

2024-03-15 Thread Subia Thomas OI-US-LIV5
Colleagues, Using write.xlsx to extract data from an Excel file, I get this error message. Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, : java.lang.OutOfMemoryError: GC overhead limit exceeded I was thinking that this might be a RAM issue but with 16 GB RAM, I

[R] annotate

2023-10-05 Thread Subia Thomas OI-US-LIV5
Colleagues, I wish to create y-data labels which meet a criterion. Here is my reproducible code. library(dplyr) library(ggplot2) library(cowplot) above_92 <- filter(faithful,waiting>92) ggplot(faithful,aes(x=eruptions,y=waiting))+ geom_point(shape=21,size=3,fill="orange")+ theme_cowplot()+