Re: [Rd] Problem with accessibility in R 4.2.0 and 4.2.1.

2022-12-20 Thread Tomas Kalibera
Dear Andrew, Jonathan, I had a closer look and tried to improve accessibility in Rgui, please see below. I would be grateful for feedback. Rgui supports three cursor types, which can be selected via Edit/GUI preferences/Cursor blink. The default is "partial", but for screen readers, please

Re: [Rd] Problem with accessibility in R 4.2.0 and 4.2.1.

2022-12-20 Thread Tomas Kalibera
On 9/22/22 23:15, Andrew Hart via R-devel wrote: On 22/09/2022 16:42, Toby Hocking wrote: Another option is to use https://emacspeak.sourceforge.net/ (version of emacs editor/ide which can speak letters/words/lines -- has a blind maintainer) with

Re: [R-pkg-devel] Help with fixing problems for new R package

2022-12-20 Thread Uwe Ligges
On 19.12.2022 22:45, Anna Carolina Resende wrote: Hello, I'm running test to check if my package is working properly, and for Fedora, Windows and Ubuntu I get the following note: * checking CRAN incoming feasibility ... [5s/25s] NOTE Maintainer: ‘Anna Carolina Resende ’ I read online that

Re: [R-pkg-devel] Help with fixing problems for new R package

2022-12-20 Thread Ivan Krylov
В Tue, 20 Dec 2022 10:45:38 +1300 Anna Carolina Resende пишет: > * checking CRAN incoming feasibility ... [5s/25s] NOTE > Maintainer: ‘Anna Carolina Resende ’ > > I read online that it's a note for CRAN so they can check that the > maintainer made changes, could you confirm that that is the

[R-pkg-devel] Help with fixing problems for new R package

2022-12-20 Thread Anna Carolina Resende
Hello, I'm running test to check if my package is working properly, and for Fedora, Windows and Ubuntu I get the following note: * checking CRAN incoming feasibility ... [5s/25s] NOTE Maintainer: ‘Anna Carolina Resende ’ I read online that it's a note for CRAN so they can check that the

Re: [Rd] F77_CALL(dgetrs) C++ call in R-devel

2022-12-20 Thread Dirk Eddelbuettel
On 20 December 2022 at 12:33, Lars Relund wrote: | In my package, I have the method: | | /** Solve equations transpose(P)w = r. */ | int LASolveT(MatSimple , MatSimple , const | MatSimple ) { | int rows = P.rows; | int nrhs = 1; | int lda = rows; | int

[Rd] F77_CALL(dgetrs) C++ call in R-devel

2022-12-20 Thread Lars Relund
In my package, I have the method: /** Solve equations transpose(P)w = r. */ int LASolveT(MatSimple , MatSimple , const MatSimple ) { int rows = P.rows; int nrhs = 1; int lda = rows; int ldb = rows; int info = -1; MatSimple ipivot(1,rows);

Re: [R-pkg-devel] How do I enable to show data in inst/extdata in data() || lazy load

2022-12-20 Thread Ivan Krylov
В Tue, 20 Dec 2022 05:28:49 +0530 Sanjeev Sariya пишет: > I need to provide an external data/file in the R package. This has > come as a request from F1000 journal editors. Would the journal editors agree to have this data in the form of an R object? Is it a strict requirement to have this file

Re: [R-pkg-devel] How do I enable to show data in inst/extdata in data() || lazy load

2022-12-20 Thread Uwe Ligges
On 20.12.2022 00:58, Sanjeev Sariya wrote: Hi, thank you for the reply. Do you need this to be a file? Could it be a pre-parsed R object instead? Yes, and that can go into an .RData file. Best, Uwe Ligges I need to provide an external data/file in the R package. This has come as a