10-17-2018
jagnew
Obsidian | Level 7
Member since
12-08-2017
- 18 Posts
- 11 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by jagnew
Subject Views Posted 916 03-12-2018 06:15 AM 916 03-12-2018 06:15 AM 938 03-12-2018 05:50 AM 2132 03-01-2018 09:58 AM 2133 03-01-2018 09:56 AM 2146 03-01-2018 09:01 AM 2154 03-01-2018 08:44 AM 2218 02-28-2018 11:50 AM 1006 02-22-2018 03:51 AM 1049 02-21-2018 10:05 AM -
Activity Feed for jagnew
- Posted Re: Learning Base SAS when SAS EG Installed on SAS Programming. 03-12-2018 06:15 AM
- Posted Re: Learning Base SAS when SAS EG Installed on SAS Programming. 03-12-2018 06:15 AM
- Liked Re: Learning Base SAS when SAS EG Installed for RW9. 03-12-2018 06:14 AM
- Liked Re: Learning Base SAS when SAS EG Installed for Kurt_Bremser. 03-12-2018 06:14 AM
- Posted Learning Base SAS when SAS EG Installed on SAS Programming. 03-12-2018 05:50 AM
- Posted Re: Collating Proc Freq Table Values on SAS Programming. 03-01-2018 09:58 AM
- Liked Re: Collating Proc Freq Table Values for Astounding. 03-01-2018 09:57 AM
- Posted Re: Collating Proc Freq Table Values on SAS Programming. 03-01-2018 09:56 AM
- Posted Re: Collating Proc Freq Table Values on SAS Programming. 03-01-2018 09:01 AM
- Liked Re: Collating Proc Freq Table Values for Reeza. 03-01-2018 08:45 AM
- Liked Re: Collating Proc Freq Table Values for Astounding. 03-01-2018 08:45 AM
- Liked Re: Collating Proc Freq Table Values for mkeintz. 03-01-2018 08:45 AM
- Posted Re: Collating Proc Freq Table Values on SAS Programming. 03-01-2018 08:44 AM
- Posted Collating Proc Freq Table Values on SAS Programming. 02-28-2018 11:50 AM
- Liked Re: 1 dependent field - find most influential independent fields for Ksharp. 02-22-2018 09:14 AM
- Posted Re: 1 dependent field - find most influential independent fields on SAS Programming. 02-22-2018 03:51 AM
- Tagged 1 dependent field - find most influential independent fields on SAS Programming. 02-21-2018 10:06 AM
- Posted 1 dependent field - find most influential independent fields on SAS Programming. 02-21-2018 10:05 AM
- Posted Re: Month-on-Month Change on SAS Enterprise Guide. 01-18-2018 11:25 AM
- Posted Re: Month-on-Month Change on SAS Enterprise Guide. 01-18-2018 11:24 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 1 1
03-12-2018
05:50 AM
Hi, This could well be a dumb question but I am unsure and cannot find the answer online. I use SAS EG at work but I wish to learn Base SAS to expand my skills. What is the best way to do this? I am writing as many manual programs as possible, rather than using the query builder, but I realise EG is still doing a lot of things I would have to code manually in Base, and I want to learn Base as comprehensively as possible. Any advice would be appreciated. Thanks
... View more
03-01-2018
09:58 AM
Thanks Reeza, I haven't been able to get my head around this yet but I will have a look soon
... View more
03-01-2018
09:56 AM
Adding the MISSING option worked! Thank you, this has been very helpful
... View more
03-01-2018
09:01 AM
Hi @mkeintz, apologies if I'm being dumb but what exactly are you doing in the tables statement? Thanks
... View more
03-01-2018
08:44 AM
Thanks Astounding. I think this is the right method/solution as it is close to what I need. However I am having issues with some of the variables only showing 1 value in the output - while some variables correctly show all their values....
... View more
02-28-2018
11:50 AM
Hi, I have a feeling the solution I'm hoping for doesn't exist/isn't possible, but here goes: - I have a dataset with 21 variables, one of which is ACTIVITY_TYPE which has 5 possible values - 1/2/3/4/5 - I want to look at all of the other variables against ACTIVITY_TYPE - what are the proportions of their responses across ACTIVITY TYPE? - EG; one of the variables is 'Organisation' - A/B/C/D. I want to see for each of A/B/C/D what % is ACTIVITY_TYPE 1/2/3/4/5 - I have used PROC FREQ to get such a one way frequency analysis (it is only the 'col pct' and 'frequency' that I am interested in) - I know I can use PROC FREQ to output multiple tables showing the results, but I will then be left with manual process to bring them together in one table - Is there any way to shorten this? I am using EG. Any advice would be appreciated. Thanks
... View more
02-22-2018
03:51 AM
Thanks, I'll check those out
... View more
02-21-2018
10:05 AM
Hi I have a dataset with 55 columns. I want to determine which of the columns can be used to determine the likely value of column A, they are a mix of character and numeric fields. I am not sure which method to select/statistic to use. I have tried PROC CORR but this errors due to field type. Any advice with this would be great. Thanks
... View more
- Tags:
- correlation
01-18-2018
11:25 AM
Thanks Reeza, I think I'll come back to this method when I'm a bit more capable
... View more
01-18-2018
08:53 AM
Thanks, this has worked great. As a further step I would like to add another column in showing LAG2 (another step back). How can I change the 'if first' part to account for this - it would be 'if second' that I need but I don't think this is a function. Thanks again
... View more
01-17-2018
07:23 AM
Thanks for your help, although I am still unsure how to proceed. Here is the code I have from Query Builder, I need to add another column which is Auto% Change - this needs to be a measure of the change against the previous month for the customer, so should be blank/null for the first month for each customer. I am not sure how to use the DATA STEP. PROC SQL;
CREATE TABLE WORK.QUERY_FOR_ALL_VOL_0000 AS
SELECT t1.CUSTOMER_NUM,
t1.YEAR,
t1.MONTH,
t1.'AUTO%'n
FROM WORK.QUERY_FOR_ALL_VOL t1;
QUIT; Thanks
... View more
01-17-2018
05:44 AM
Hi, I have a table which is a list of transactions, with customer numbers and products. I want to group transactions by customer and month and find the months where volume changes >10% vs the last month they transacted (which may be several months before). Ideally the output would show Customer, Month, Volume, Change vs Last Month Traded. I am very new with SAS and have no idea how to do this, any help would be great. Thanks Jamie
... View more