2 weeks ago
jitb
Obsidian | Level 7
Member since
09-25-2018
- 37 Posts
- 13 Likes Given
- 1 Solutions
- 5 Likes Received
-
Latest posts by jitb
Subject Views Posted 477 3 weeks ago 534 3 weeks ago 541 3 weeks ago 599 3 weeks ago 615 3 weeks ago 694 04-12-2025 06:32 PM 829 04-11-2025 06:46 PM 849 04-11-2025 05:22 PM 803 01-22-2025 02:34 PM 829 01-22-2025 01:05 PM -
Activity Feed for jitb
- Liked Re: Weights for each variable in Logistic for Season. 3 weeks ago
- Posted Re: Weights for each variable in Logistic on Statistical Procedures. 3 weeks ago
- Posted Re: Weights for each variable in Logistic on Statistical Procedures. 3 weeks ago
- Posted Re: Weights for each variable in Logistic on Statistical Procedures. 3 weeks ago
- Posted Re: Weights for each variable in Logistic on Statistical Procedures. 3 weeks ago
- Posted Weights for each variable in Logistic on Statistical Procedures. 3 weeks ago
- Liked Re: Proc logistic with error : All observations have the same response for StatDave. 04-12-2025 06:33 PM
- Posted Re: Proc logistic with error : All observations have the same response on Statistical Procedures. 04-12-2025 06:32 PM
- Liked Re: Proc logistic with error : All observations have the same response for Ksharp. 04-12-2025 06:31 PM
- Posted Re: Proc logistic with error : All observations have the same response on Statistical Procedures. 04-11-2025 06:46 PM
- Posted Proc logistic with error : All observations have the same response on Statistical Procedures. 04-11-2025 05:22 PM
- Posted Re: SAS for Linear Models book on Statistical Procedures. 01-22-2025 02:34 PM
- Posted Re: SAS for Linear Models book on Statistical Procedures. 01-22-2025 01:05 PM
- Posted SAS for Linear Models book on Statistical Procedures. 01-22-2025 12:52 PM
- Liked Re: Extracting Cryptoquant data via JSON API for ademkalyir. 02-26-2024 07:04 AM
- Got a Like for Re: Extracting Cryptoquant data via JSON API. 02-26-2024 04:46 AM
- Liked Re: SAS Programmer openings for SASKiwi. 02-23-2024 08:58 AM
- Liked Re: Extracting Cryptoquant data via JSON API for ademkalyir. 02-23-2024 08:56 AM
- Posted Re: SAS Programmer openings on SAS Programming. 10-16-2023 07:26 PM
- Got a Like for SAS Programmer openings. 10-13-2023 03:34 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 4 2 1 1 -
My Liked Posts
Subject Likes Posted 2 06-29-2022 07:24 PM 2 10-12-2023 03:48 PM 1 05-23-2023 07:43 AM
3 weeks ago
Thank you, Dave. Yes, I am aware of using standardized estimates for importance. I was thinking if we could assign weights a priori. Maybe it's not a good idea. On an unrelated note, will you be attending SAS Innovate on May 6? Would like to meet if possible. Thanks.
... View more
3 weeks ago
Yes, true. Have to think about it a bit more:). Basically, I would like to reduce the importance of 2 variables based on business rules.
... View more
3 weeks ago
Thanks Dave.... actually, I meant multiplying X1 with W1 for each observation in the data etc. Is that plausible?
... View more
3 weeks ago
Hello,
Would it be correct to assign weights to variables based on the inverse of their variance? The weights could be normalized to total to 1. Say, I have a binary(0/1) response variable Y, and 2 independent variables X1 and X2. I assign weights to each as mentioned before, say W1 and W2.
Could I model as logOdds(Y) = W1*X1 + W2*X2 ? Thanks in advance!
... View more
04-12-2025
06:32 PM
Thank you...this code is very helpful. The problem was I had missing weights.
... View more
04-11-2025
06:46 PM
Thank you for your observation. Yes, I need to check if I have any missing or invalid values in the weights assigned. Thanks again for pointing this out!
... View more
04-11-2025
05:22 PM
Hello,
I am getting an error when running proc logistic as follows: All observations have the same response. No statistics are computed.
I know that my binary(0/1) response variable (bad) does NOT have the same value for observations in the data. I can't figure out why I am getting this error. The distribution of bads in the data is roughly 40% with value 1 and 60% with value 0. Any help is much appreciated. The code I am running is:
proc logistic data= train /*model_score_data(where=(selected=1))*/ descending /*outmodel=train_model*/; model bad = W_equipment W_Ever_31Plus_DPD W_TIB_Month W_PG1_VantageScore W_SBRI_Lease_Score W_PG1_InquiriesDuringLast6Months W_Months_Aged / selection=forward sle=0.1 ctable pprob=(0.1 to 0.5 by 0.05) lackfit outroc=train_roc clodds=pl link=logit ; weight weights; output out=train_scored_data predicted=Pred_prob predprobs=individual reschi=res_chi resdev=res_dev h=levrg difdev=dif_dev ; *score data = model_score_data(where=(selected=0)) out=test_scored_data ; run;
... View more
01-22-2025
12:52 PM
Hi, does anyone know how one could download files and sample programs associated with the book SAS for Linear Models by Littel, Stroup, Freund? Are these available? Thanks!
... View more
10-16-2023
07:26 PM
Hi SASkiwi,
You are right, and I do hightlight my industry/domain experience. However, I am seeing that SAS as an analytical tool is losing traction in many industries other than biostatistics and clinical trials. I am too old a dog to learn new tricks, but I have a feeling I may need to bite the bullet and start learning Python, databricks, PowerBI etc. Thanks for your tip, though. Much appreciated!
Jit
... View more
10-12-2023
03:48 PM
2 Likes
Hi, I am looking for a SAS programmer job. I am in Philadelphia and have 15+ experience in SAS, including SAS statistical procedures. I don't have clinical trials experience, but am open to such jobs too. I am very strong in Data step and Procs. Any advice or guidance would be much appreciated. Thanks!
Jit
... View more
05-31-2023
11:53 AM
Thank you, BallardW, for the pointers. I will change the code to do joins instead. Still waiting for my work space, but will use your suggestions when I am ready to execute. Thanks again!
... View more
05-31-2023
10:06 AM
Thanks to Tom and LinusH for your responses. I believe the key is to have a dedicated workspace on teradata where temp files could be stored. I have requested this space from the admin. Once I get it, I will try your suggestions again. As of now, the code inserts rows 1 at a time and does not use multi inserts. This is why it's taking so long. The options statement really helped in analyzing this. Thank you.
... View more