BookmarkSubscribeRSS Feed
andy_wk
Calcite | Level 5

I've got the following question.

I'm trying to run a partial least square forecast on a data model I have. Issue is that I need to block certain line in order to have the forecast for a specific time.

What I want would be the following. For June, every line before May 2014 will be blocked (see the screenshot below).

CaptureB.PNG

For May , every line before April 2014 will be blocked (see the screenshot below).

CaptureC.PNG

I was thinking of using a delete through a proc sql to do so but this solution seems to be very brutal and I wish to keep my table intact.

Question : Is there a way to block the line for a specific date with needing a deletion?

Edit : The aim of the blocking will be to use the missing values and to run the forecast on this missing month namely here in June 2014 and in May 2014 for the second example.

Plus: The mixture of English and French is normal because I've exported the file in a CSV format for a better vizualisation.

Many thanks for any insight you can give me as I've never done that before and don't know if there is a way to do that (I did not find anything on the net).

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Ha, this follows on from your other question.  Why not just assign a flag within a datastep for each group:

data ...;

     set ...;

     array flags{2} $1.;

     if nouv_date < '01JUN14'd then flag{1}="Y"; else flag{1}="N";

     if nouc_date < '01MAY14'd then flag{2}="Y"; else flag{2}="N";

run;

Then you can use these flags later on as a where clause for each processing.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 646 views
  • 0 likes
  • 2 in conversation