Posts by Clecio Nepunuceno • 131 points
7 posts
-
1
votes1
answer45
viewsQ: receive emails using R
I have done several researches and I find a lot of information on how to send email through R, but I couldn’t find anything on how to receive email through R. I couldn’t even find a library to start…
-
1
votes0
answers105
viewsQ: Emojis do not appear when executing the emo::ji() function in R
I can’t see the emoji from the package emo of R when I file in rmarkdown. I do it this way: emo::ji("smile") Nothing appears and reports no error. In this other way: tibble::tibble(emo::ji("smile"))…
-
1
votes0
answers26
viewsQ: Data security in a Plumber R api
Friends, I created an api with Plumber for client data transfers, that is, confidential data. In the address of the url goes the ip of my machine. Regarding the security of data traffic and the…
-
1
votes0
answers164
viewsQ: Pass R parameters in an api with Post method?
Friends, I created an R api using Plumber with the post method. but when it comes to calling this api and passing the parameters I’m not getting , I call this way: resp <- POST("http:url", body =…
-
1
votes0
answers31
viewsQ: Error when querying R API created with Plumber
Friends, I created an api in Plumber , when I query this api directly in the browser I can see the data , but when I use the GET() function I have the following error : Error in prettyNum(.…
-
5
votes1
answer663
viewsQ: How to export data from R directly to sql server?
Friends, I consumed a web service with R and now I need to export this data directly to sql server. How do I?
-
2
votes2
answers69
viewsQ: How to create function where I need to pass the parameter inside a text block in R
I need the cnpj variable that is estre the tags <Parameter> be called as a function parameter. But note that it is within a text block that I use to consume a web service. It is possible…