Questions tagged [sas-studio]

SAS Studio is a SAS thin client that runs in a web browser and allows a user to connect to a SAS server and execute SAS code. It is the client that is used to run the SAS University Edition free software, as well as many paid SAS products.

SAS Studio is a SAS thin client that runs in a web browser and allows a user to connect to a SAS server and execute SAS code. It is the client that is used to run the SAS University Edition free software, as well as many paid SAS products.

http://support.sas.com/software/products/sasstudio/

http://support.sas.com/software/products/university-edition/faq/main.htm

100 questions
1
vote
1 answer

SAS Studio issue - mySASObjectServer access denied

I have an issue with SAS Studio v9.04 running on Ubuntu 20.04, The server run well except when a user try to login it doesn’t work it says : The launch of server mySASObjectServer for user xxxxxx failed. Access denied. I tried with other users and…
xwildx
  • 31
  • 3
1
vote
1 answer

Independent variable to find seasonality effect?

I'm not sure if it's right to ask this here but any help greatly appreciated. I'm working on sas forecast studio. This is my time series dataset (quarterly data): Date e.g. 1-Jan-80, 1-Apr-80, 1-Jul-80 DateQ e.g. 1980Q1, 1980Q2, 1980Q3 Year e.g.…
Char
  • 11
  • 2
1
vote
2 answers

Split string in SAS by keeping the 0 lead values

My dataset looks like this And I want it to look like this: Subject Code site subj 0156 00062 156 62 0156 00062 156 62 0047 00032 47 32 0034 00066 34 66 0032 00029 32 …
1
vote
1 answer

Rename row variables names in SAS after Proc FREQ function

I do this to get a TABLE like below PROC FREQ data=projet.matchs; TABLES circuit/ NOCUM; run; Circuit Fréquence Pourcentage ATP 127 50.00 WTA 127 50.00 I need exactly the same except that I want "Male" instead…
1
vote
0 answers

How to use proc mianalyze to predict test set

I am using a logistic regression with Mulitple imputation. How do I use the PROC MIANALYZE output (combined parameter estimates) to predict the test test labels ? My code for the proc mianalyze is as below; proc mianalyze parms=a_mvn; modeleffects…
stooicrealism
  • 548
  • 2
  • 9
  • 29
1
vote
1 answer

SAS: change the colour and thickness of the reference label in proc gplot

I am trying to plot the different levels of salary in a needle plot and I'd like a reference line. The following code provides this reference line but the line is the same colour as the needles and is too thin. Is there a way to change…
78282219
  • 85
  • 1
  • 8
1
vote
1 answer

proc transreg not outputting curve fit plot

I am using proc transreg to test different transformations in the sashelp.baseball dataset. I request all plots and sometimes I can see a curve fit graph and sometimes I can't. Is there something I am missing if I want to output the regression fit…
78282219
  • 85
  • 1
  • 8
1
vote
2 answers

Transpose a correlation matrix into one long vector in SAS

I'm trying to turn a correlation matrix into one long column vector such that I have the following structure data want; input _name1_$ _name2_$ _corr_; datalines; var1 var2 0.54 ; run; I have the following code, which outputs name1 and corr;…
1
vote
3 answers

Transforming variables en masse in SAS

I've been searching for a question related but I have had no luck as of yet. I am looking to transform a long list of independent variables for a regression analysis. A dummy dataset would look like this: DATA TEST (DROP = i); DO i = 1 to 4000; …
78282219
  • 159
  • 1
  • 12
1
vote
2 answers

extend list to include factor transforms in SAS

I have a dataset like this data have; input ID Label; datalines; Factor_1 Assets Factor_2 Liabilities Factor_3 Bonds ; run; I'm looking to create a new dataset to accomodate a factor transformation and I will need to update my dictionary as…
1
vote
3 answers

use of !! in Call Symput in SAS

Could anyone tell me what this data step is doing? I have never seen the use of "!!" or a "double exclamation mark" before? data _null_; set &dset_in.; if i = _n_ then do i=1 to nvar; call symput ("var" !! strip(put(_n_, 3.)),…
user5572129
1
vote
1 answer

PROC IML Log (SAS Studio)

I am relatively new to PROC IML procedure. I'd like to have my log to be completely clean, which includes log showing no notes and "!"(length in this case too?) if possible. How can I eliminate the note, keep my CPU and performance very efficient?…
mchsu
  • 31
  • 1
  • 5
1
vote
2 answers

How to transpose my data on sas by observation on data step

I have a sas datebase with something like this: id birthday Date1 Date2 1 12/4/01 12/4/13 12/3/14 2 12/3/01 12/6/13 12/2/14 3 12/9/01 12/4/03 12/9/14 4 12/8/13 12/3/14 12/10/16 And I want the data in this form: id Date Datetype 1…
sfrancov
  • 21
  • 2
1
vote
2 answers

SAS: set statement point = _N_

I'm trying to understand a friend's code to see if I can find some inspiration for my dissertation. He runs a section where he creates a dataset and inputs 3 datasets. However, what I don't understand is that he uses 3 set statements and the latter…
78282219
  • 593
  • 5
  • 21
1
vote
1 answer

change SAS encoding to utf-8

I am struggling greatly with changing my SAS session to utf-8. I have tried changing the cfg file - sasv9.cfg; however, I am told that access is denied I have tried using the encoding option; however, it says I must apply this on start-up, I tried…
78282219
  • 593
  • 5
  • 21