09-11-2020
ManuelaVila
Fluorite | Level 6
Member since
06-22-2020
- 8 Posts
- 2 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by ManuelaVila
Subject Views Posted 766 09-02-2020 10:05 AM 1465 06-29-2020 12:00 PM 1507 06-29-2020 10:25 AM 3703 06-23-2020 08:48 AM 3768 06-22-2020 05:26 PM 3799 06-22-2020 03:17 PM 3812 06-22-2020 02:52 PM 3859 06-22-2020 01:36 PM -
Activity Feed for ManuelaVila
- Liked Re: Do loop proc IML with ImportDataSetFromR for PeterClemmensen. 09-07-2020 08:36 AM
- Posted Do loop proc IML with ImportDataSetFromR on SAS/IML Software and Matrix Computations. 09-02-2020 10:05 AM
- Posted Re: Shiny app in sas studio on New SAS User. 06-29-2020 12:00 PM
- Posted Shiny app in sas studio on New SAS User. 06-29-2020 10:25 AM
- Posted Re: SAS Studio Error: SAS could not initialize the R language interface. on SAS/IML Software and Matrix Computations. 06-23-2020 08:48 AM
- Liked Re: SAS Studio Error: SAS could not initialize the R language interface. for Rick_SAS. 06-23-2020 08:48 AM
- Posted Re: SAS Studio Error: SAS could not initialize the R language interface. on SAS/IML Software and Matrix Computations. 06-22-2020 05:26 PM
- Posted Re: SAS Studio Error: SAS could not initialize the R language interface. on SAS/IML Software and Matrix Computations. 06-22-2020 03:17 PM
- Posted Re: SAS Studio Error: SAS could not initialize the R language interface. on SAS/IML Software and Matrix Computations. 06-22-2020 02:52 PM
- Posted SAS Studio Error: SAS could not initialize the R language interface. on SAS/IML Software and Matrix Computations. 06-22-2020 01:36 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1
09-02-2020
10:05 AM
Hi im trying to import to sas some tables that are in R named: table_1 , table_2 , table_3 etc. I need to do this with a loop because the number of tables will depend of de number of rows of another table (table_w). i imagine it would be something like : call ImportDataSetFromR("table_w","table_w");
do i=1 to nrow(table_w); call ImportDataSetFromR("table_"&i,"table_"&i);
end; but when i run it it has no errors but the are no tables in work. thanks!
... View more
06-29-2020
12:00 PM
i need the shiny app because in there i select the variables i need based on a reactive graph that changes depending of what i choose.
... View more
06-29-2020
10:25 AM
Hi im transferring an R code to sas using the "submit / R;" of IML. My code has a shiny app and when i try to run it, it doesnt give me an error but it never stops running: Heres a simple example of what im trying to do proc iml;
print "------------- R Results --------------------";
submit / R;
library(dplyr)
library(lubridate)
library(shiny)
ui <- fluidPage(
"The population of France in 1972 was",
textOutput("answer")
)
# Define the server function
server <- function(input, output) {
output$answer <- renderText({
"50,763,920" })
} endsubmit; thanks!
... View more
06-22-2020
05:26 PM
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 72 73 proc options option=rlang value; run; SAS (r) Proprietary Software Release 9.4 TS1M6 Información del valor de la opción para la opción SAS RLANG Valor:RLANG Scope: SAS Session How option value set: Config File Config file name: /opt/sas/SASHome/SASFoundation/9.4/sasv9.cfg NOTE: PROCEDURE OPTIONS ha utilizado (Tiempo de proceso total): real time 0.00 seconds cpu time 0.00 seconds 74 75 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 87
... View more
06-22-2020
03:17 PM
Rick, the admin has already started the sas server with the rlang but i still have the error. maybe its an issue of R version (3.5.2) or where its installed? Thanks
... View more
06-22-2020
02:52 PM
Hi Rick, thanks for answering: 1-im running Sas 3.8 ( its not university) 2-im connected to a remote SAS server on linux
... View more
06-22-2020
01:36 PM
Hi im new in sas and im trying to run an R code in Sas studio: proc iml; submit / r; x<-y+5 endsubmit; I keep getting this error: ERROR: SAS could not initialize the R language interface. ERROR: The R_HOME environment variable was not found. i already have rlang activated. Thanks!
... View more