Re: [R] Package installation problem

2020-05-29 Thread John via R-help
On Fri, 29 May 2020 18:36:39 +0200 Martin Møller Skarbiniks Pedersen wrote: > sudo dnf install libcurl-devel Martin, I was going to say I had already done that more than once, using both the command line and the new "dnfdragora" package manager, but then decided, "what the heck. I'll try again."

Re: [R] Creating file from raw connection

2020-05-29 Thread Sebastien Bihorel via R-help
Thanks Duncan From: Duncan Murdoch Sent: Friday, May 29, 2020 15:36 To: Sebastien Bihorel ; r-help@r-project.org Subject: Re: [R] Creating file from raw connection   On 29/05/2020 3:00 p.m., Sebastien Bihorel via R-help wrote: > Hi, > > Let's say I can extract the content of an Excel .xlsx

Re: [R] Creating file from raw connection

2020-05-29 Thread Duncan Murdoch
On 29/05/2020 3:00 p.m., Sebastien Bihorel via R-help wrote: Hi, Let's say I can extract the content of an Excel .xlsx file stored in a database and store it as raw content in an R object. What would be the proper way to "create" a .xlsx file and "transfer" the content of this obj into it? I t

[R] Creating file from raw content

2020-05-29 Thread Sebastien Bihorel via R-help
Hi, Let's say I can extract the content of an Excel .xlsx file stored in a database and store it as raw content in an R object. What would be the proper way to "create" a .xlsx file and "transfer" the content of this obj into it? I took the example of an Excel file, but my question would extend

[R] Creating file from raw connection

2020-05-29 Thread Sebastien Bihorel via R-help
Hi, Let's say I can extract the content of an Excel .xlsx file stored in a database and store it as raw content in an R object. What would be the proper way to "create" a .xlsx file and "transfer" the content of this obj into it? I took the example of an Excel file, but my question would extend

Re: [R] Package installation problem

2020-05-29 Thread Martin Møller Skarbiniks Pedersen
On Fri, 29 May 2020 at 07:03, John via R-help wrote: > I'm not certain just what this problem is. Trying to install the > "curl" package, which "tseries" wants results in the following error: > > > Package libcurl was not found in the pkg-config search path. > Perhaps you should add the dir

Re: [R] Problem with library path

2020-05-29 Thread Uwe Ligges
On 29.05.2020 08:32, Hiram Saúl Rebollar Fuentes wrote: Hi, I have a problem when I try to load a library, and I think it’s because my username has a special character in it, the library path is C:/Users/Saúl/Documents/R/win-library/4.0, but R reads it as C:/Users/Saú Documents/R/win-library/

[R] Excessive precision requested error in deSolve package

2020-05-29 Thread Luigi Marongiu
Hello, I have a system of the differential equation for epidemic model that runs as: ``` fun = function(X, Y, P) { # starting population S = Y[1] E = Y[2] I = Y[3] R = Y[4] N = S+E+I+R P = (S*I)/N # parms transm_rate = P["b"] incubation_time = P["k"] illness_time = P["r"] #

[R] Problem with library path

2020-05-29 Thread Hiram Saúl Rebollar Fuentes
Hi, I have a problem when I try to load a library, and I think it’s because my username has a special character in it, the library path is C:/Users/Saúl/Documents/R/win-library/4.0, but R reads it as C:/Users/Saú Documents/R/win-library/4.0 How can this be fixed? Thanks! [[alternative HT

Re: [R] Package installation problem

2020-05-29 Thread Jeff Newmiller
The library alone is not enough... you have to have the development headers for compiling code against the library. On May 28, 2020 10:03:18 PM PDT, John via R-help wrote: >I'm not certain just what this problem is. Trying to install the >"curl" package, which "tseries" wants results in the fol