02-06-2025
Cuneyt
Obsidian | Level 7
Member since
02-26-2013
- 39 Posts
- 0 Likes Given
- 1 Solutions
- 0 Likes Received
-
Latest posts by Cuneyt
Subject Views Posted 467 02-06-2025 03:25 PM 635 02-03-2025 02:31 PM 650 08-08-2024 09:17 PM 698 08-08-2024 07:16 PM 1006 03-26-2024 05:35 PM 1276 02-09-2024 10:25 AM 1300 02-09-2024 08:56 AM 1363 02-08-2024 05:33 PM 2454 08-28-2023 12:47 PM 2498 08-27-2023 06:58 PM -
Activity Feed for Cuneyt
- Posted Re: NLOPTIONS Grid Search on Statistical Procedures. 02-06-2025 03:25 PM
- Posted NLOPTIONS Grid Search on Statistical Procedures. 02-03-2025 02:31 PM
- Posted Re: Importing a delimited text file with varying-length character variables on SAS Programming. 08-08-2024 09:17 PM
- Posted Importing a delimited text file with varying-length character variables on SAS Programming. 08-08-2024 07:16 PM
- Posted Re: Gedit extension for SAS syntax highlighting on SAS Programming. 03-26-2024 05:35 PM
- Posted Re: Gedit extension for SAS syntax highlighting on SAS Programming. 02-09-2024 10:25 AM
- Posted Re: Gedit extension for SAS syntax highlighting on SAS Programming. 02-09-2024 08:56 AM
- Posted Gedit extension for SAS syntax highlighting on SAS Programming. 02-08-2024 05:33 PM
- Posted Re: Cramer-von Mises p-value on Statistical Procedures. 08-28-2023 12:47 PM
- Posted Re: Cramer-von Mises p-value on Statistical Procedures. 08-27-2023 06:58 PM
- Posted Re: Cramer-von Mises p-value on Statistical Procedures. 08-27-2023 11:36 AM
- Posted Re: Cramer-von Mises p-value on Statistical Procedures. 08-25-2023 06:19 PM
- Posted Cramer-von Mises p-value on Statistical Procedures. 08-25-2023 02:32 PM
- Posted Re: Rounding error in PROC TABULATE or PROC FORMAT on SAS Programming. 06-01-2023 03:41 PM
- Posted Re: Rounding error in PROC TABULATE or PROC FORMAT on SAS Programming. 06-01-2023 03:37 PM
- Posted Re: Rounding error in PROC TABULATE or PROC FORMAT on SAS Programming. 06-01-2023 03:35 PM
- Posted Re: Rounding error in PROC TABULATE or PROC FORMAT on SAS Programming. 06-01-2023 02:35 PM
- Posted Rounding error in PROC TABULATE or PROC FORMAT on SAS Programming. 06-01-2023 01:44 PM
- Posted Re: Counting two variables on SAS Programming. 05-08-2023 08:29 PM
- Posted Counting two variables on SAS Programming. 05-08-2023 07:34 PM
02-06-2025
03:25 PM
Hi Steve,
Thanks for your response. I was looking into PROC NLMIXED. I have read further about the PARMS options. Now, I have a good idea about how proceed. Thank you very much for your guidance.
Cuneyt
... View more
02-03-2025
02:31 PM
SAS provides a number of techniques (NEWRAP, QUANEW, etc.) under nonlinear optimization methods. One of these techniques is NONE where, according to documentation, SAS conducts a grid search. I have never used grid search before. Do I provide SAS with initial values, upper bounds, lower bounds? What is the proper way to set up a grid search? Any guidance will be much appreciated.
... View more
08-08-2024
09:17 PM
Here is the solution that worked for me:
data WORK.IMPORT;
infile "/home/c.eroglu/fec/k.txt" delimiter = '|' firstobs=1 missover dsd;
length cmte_id $9.
amndt_ind $1.
rpt_tp $3.
transaction_pgi $5.
image_num $18.
transaction_tp $3.
entity_tp $3.
name $200.
city $30.
state $2.
zip_code $9.
employer $38.
occupation $38.
transaction_dt $8.
transaction_amt 8.
other_id $9.
tran_id $12.
file_num $22.
memo_cd $1.
memo_text $100.
sub_id $19.;
input cmte_id $
amndt_ind $
rpt_tp $
transaction_pgi $
image_num $
transaction_tp $
entity_tp $
name $
city $
state $
zip_code $
employer $
occupation $
transaction_dt $
transaction_amt
other_id $
tran_id $
file_num $
memo_cd $
memo_text $
sub_id $;
run;
... View more
08-08-2024
07:16 PM
Dear All,
I am trying to import a "|" delimited text file without much success. The data set has many character variables of variable length. I am not getting any error messages, but SAS reads many variables in correctly. The SAS code, input file and output data set are shown below. Any help will be greatly appreciated.
data WORK.IMPORT;
infile "/home/c.eroglu/fec/k.txt" delimiter = '|' firstobs=1 missover;
input cmte_id $ /* max length = 9 */
amndt_ind $ /* max length = 1 */
rpt_tp $ /* max length = 3 */
transaction_pgi $ /* max length = 5 */
image_num $ /* max length = 18 */
transaction_tp $ /* max length = 3 */
entity_tp $ /* max length = 3 */
name $ /* max length = 200 */
city $ /* max length = 30 */
state $ /* max length = 2 */
zip_code $ /* max length = 9 */
employer $ /* max length = 38 */
occupation $ /* max length = 38 */
transaction_dt $ /* max length = 8 */
transaction_amt
other_id $ /* max length = 9 */
tran_id $ /* max length = 12 */
file_num
memo_cd $ /* max length = 1 */
memo_text $ /* max length = 100 */
sub_id ;
run;
... View more
03-26-2024
05:35 PM
I have written a syntax highlighting file (sas.lang) and a color theme file (sascolors.xml) for editing SAS programs in Gedit. They are both XML files. I have kept these files as simple as possible, first because I am not a professional software developer, and second because I wanted these files to be updated easily. I have attached a zip file that contains both of these files.
SAS.LANG: This is the SAS language specification file for syntax highlighting in Gedit. It highlights the following:
Comments between /* */ and * ;
String within single and double quotes
SAS procedures
SAS statements, keywords, options, etc.
This file should be saved in the following directory: /.local/share/gtksourceview-3.0/language-specs/ or /.local/share/gtksourceview-4/language-specs/
SASCOLORS.XML: This is a Gedit color theme for the SAS language. This file should be saved in the following directory: /.local/share/gedit/styles
It highlights the following
Comments in green
Strings in purple
SAS procedures in dark blue and bold
SAS statements, keywords, options, etc. in light blue
... View more
02-09-2024
10:25 AM
Hi Chris, what do you mean by "Notepad++ data"? Do you mean the language definition?
... View more
02-09-2024
08:56 AM
Hi Chris,
Thanks for your prompt reply. VS Code is not available in my work environment. But I must say that SAS has done an amazing job with the SAS extension for VS Code. In my work environment, I am writing SAS programs in a text editor and submitting them in batch mode. The only two text editors available to me are Gedit and Emacs. I know Emacs has ESS which provides SAS syntax highlighting, but I like the simplicity of Gedit. Gedit has small language extension files for syntax highlighting. I am not a software developer myself, but I thought writing a SAS extension file for Gedit would not be a major undertaking like the SAS extension for VS Code. Do you think SAS might be interested in producing a SAS syntax highlighting file extension for Gedit?
Sincerely,
Cuneyt
... View more
02-08-2024
05:33 PM
I know that there are SAS syntax highlighting extensions for various text editors like Notepad++, but is there a Gedit (text editor on Gnome) extension for SAS syntax highlighting? I am looking for syntax highlighting, not a full IDE. Any help would be greatly appreciated.
... View more
08-28-2023
12:47 PM
Thank you very much for response. I think you hit the nail right on the head. My scale is nominal and EDF tests are, therefore, not appropriate. As you suggested, I will use the chi-square test. Again, thanks for your insights.
... View more
08-27-2023
06:58 PM
Hello @FreelanceReinh ,
Thank you so much for your detailed response.
To your first point: I looked at several papers from the 1960's for p-value tables, but I wasn't quite comfortable using any of these tables as I am not very familiar with nonparametric statistics. I did not want to invest much time into carefully reading these papers to understand exactly what they were doing.
To your second point about ties: You mention that there are many ties in my data set because both samples have the same NAICS codes. If my understanding is correct, a tie refers to the y-values. In my case, NAICS codes are my x-values (categories) and the frequencies are my y-values. I used Example 8.2 in SAS documentation on PROC NPAR1WAY, where the responses (1 through 5, categorical) are x-values, and their frequencies are y-values. PROC NPAR1WAY compares two samples (active vs placebo).
SAS Help Center: Example 85.1 Two-Sample Location Tests and Plots
SAS Help Center: Example 85.2 EDF Statistics and EDF Plot
From this point of view, I should not have any ties in my data set. Am I missing something?
To your last point about the computational difficulties: I ended up using an R function that implements K-S, C-vM, and Anderson-Darling tests and produces (if I understand correctly) exact p-values.
6.2 Comparison of two distributions | Notes for Nonparametric Statistics (bookdown.org)
The numerical values from SAS and R do not agree. Could I be using the wrong R function?
Any insights would be greatly appreciated.
Sincerely,
Cuneyt
... View more
08-25-2023
06:19 PM
I am attaching the SAS data set. The code, log, and output are shown below:
proc npar1way edf data=kl plots=none;
class source;
var naics;
freq est_emp_acc_N;
run;
68 proc npar1way edf data=kl plots=none;
69 class source;
70 var naics;
71 freq est_emp_acc_N;
72 run;
NOTE: PROCEDURE NPAR1WAY used (Total process time):
real time 0.04 seconds
cpu time 0.03 seconds
The SAS System 18:02 Friday, August 25, 2023 1
The NPAR1WAY Procedure
Kolmogorov-Smirnov Test for Variable naics
Classified by Variable source
EDF at Deviation from Mean
source N Maximum at Maximum
1 42522 0.577936 58.387741
2 1117060 0.284009 -11.391745
Total 1159582 0.294787
Maximum Deviation Occurred at Observation 19
Value of naics at Maximum = 33.0
Kolmogorov-Smirnov Two-Sample Test (Asymptotic)
KS 0.055244 D 0.293927
KSa 59.488655 Pr > KSa <.0001
Cramer-von Mises Test for Variable naics
Classified by Variable source
Summed Deviation
source N from Mean
1 42522 678.218161
2 1117060 25.817049
Cramer-von Mises Statistics (Asymptotic)
CM 0.000607 CMa 704.035210
Kuiper Test for Variable naics
Classified by Variable source
Deviation
source N from Mean
1 42522 0.293927
2 1117060 0.087944
Kuiper Two-Sample Test (Asymptotic)
K 0.381872 Ka 77.287947 Pr > Ka <.0001
... View more
08-25-2023
02:32 PM
Hi All,
I am running the following code to compare two empirical distributions.
proc npar1way edf;
class source;
var naics;
freq emp;
run;
I am getting p-values for Kolmogorov-Smirnov Two-Sample Test and Kuiper Two-Sample Test, but NOT for Cramer-von Mises test. The output includes Cramer-von Mises statistics only (see below table). How can I get the p-value for these statistics?
Cramer-von Mises Statistics (Asymptotic)
CM
0.000607
CMa
704.035210
... View more
06-01-2023
03:41 PM
Thank you. I think you are right.
... View more