02-16-2021
arunrami
Pyrite | Level 9
Member since
03-21-2018
- 94 Posts
- 46 Likes Given
- 1 Solutions
- 2 Likes Received
-
Latest posts by arunrami
Subject Views Posted 921 02-16-2021 03:36 PM 1054 02-15-2021 02:29 AM 1607 02-13-2020 06:22 AM 865 02-07-2020 11:06 AM 923 02-07-2020 05:14 AM 1687 01-31-2020 12:28 PM 1807 01-30-2020 06:27 AM 5158 01-02-2020 12:06 PM 1736 12-30-2019 07:50 AM 1760 12-26-2019 04:36 AM -
Activity Feed for arunrami
- Posted Re: Read zip file in sas/window on SAS Programming. 02-16-2021 03:36 PM
- Posted Read zip file in sas/window on SAS Programming. 02-15-2021 02:29 AM
- Liked Re: Can I use SAS for BCI (brain-computer interface) project? for Spar_Steve. 08-30-2020 12:00 PM
- Liked Re: Get a list of dataset names in a directory/library for Kurt_Bremser. 02-25-2020 07:32 AM
- Liked Re: What is the future of SAS? Recently i am hearing a lot about Python & R for BillBerkeley. 02-13-2020 01:59 PM
- Posted Re: Can I use SAS for BCI (brain-computer interface) project? on Streaming Analytics. 02-13-2020 06:22 AM
- Liked Re: Datatype conversion after proc import for ed_sas_member. 02-07-2020 11:07 AM
- Posted Re: Datatype conversion after proc import on SAS Programming. 02-07-2020 11:06 AM
- Posted Datatype conversion after proc import on SAS Programming. 02-07-2020 05:14 AM
- Posted Re: Can I use SAS for BCI (brain-computer interface) project? on Streaming Analytics. 01-31-2020 12:28 PM
- Liked Re: Can I use SAS for BCI (brain-computer interface) project? for rubricsinger. 01-31-2020 12:26 PM
- Got a Like for Can I use SAS for BCI (brain-computer interface) project?. 01-30-2020 08:49 AM
- Posted Can I use SAS for BCI (brain-computer interface) project? on Streaming Analytics. 01-30-2020 06:27 AM
- Posted Re: Read Email from Outlook thru SAS on SAS Programming. 01-02-2020 12:06 PM
- Posted Re: Pick Only SQL part from SAS code on SAS Programming. 12-30-2019 07:50 AM
- Liked Re: Pick Only SQL part from SAS code for ErikLund_Jensen. 12-30-2019 07:50 AM
- Posted Re: Pick Only SQL part from SAS code on SAS Programming. 12-26-2019 04:36 AM
- Liked Re: Pick Only SQL part from SAS code for ErikLund_Jensen. 12-26-2019 04:32 AM
- Posted Re: Pick Only SQL part from SAS code on SAS Programming. 12-19-2019 02:50 PM
- Posted Re: Pick Only SQL part from SAS code on SAS Programming. 12-19-2019 10:27 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 2 1 1 2 -
My Liked Posts
Subject Likes Posted 1 01-30-2020 06:27 AM 1 10-31-2018 07:49 AM
02-15-2021
02:29 AM
Can anyone explain how to read zipped dataset with the help of SAS and as well as zip command in sas /window platform?
... View more
02-13-2020
06:22 AM
Hi @Spar_Steve , so the SAS suite is in development to make it incorporate only with Muse device ?(would be great if it can be used to read all type of eeg input ) is there any SAS suite which can perform good with signal processing and feature extraction ?
... View more
02-07-2020
11:06 AM
It was just for an example , age is already a char variable , hence my point is , it should not enter in to if logic as it is not satisfying the logic if vtype() = 'N'. But still its creating variable declared in side if - do..?I wanna know why is it and how PDV works in this case? *I am using csv file as input
... View more
02-07-2020
05:14 AM
HI All, Here is my scenario - I am using proc import , which will set the datatype based on its content , hence I have taken a copy of dataset using 'set' and tried to convert the datatype using only if it satisfies my 'if logic', but it seems still goes in to the if condition even though it doesn't satisfy my condition . Below sample code , please help out how can I fix this . Note: variable inside if not supposed to be created as it doesn't pass the criteria .. data A;
infile cards dlm=',' missover;
input name : $32. age $ ;
cards;
hawking ,20
einstein , 40
carl sagan , 30
;
run;
data dummy;
set A;
if vtype(age) = 'N' then do ;
age_1 = input(age,best.) ;
end;
run;
... View more
01-31-2020
12:28 PM
Thanks @rubricsinger for your response , ya I will update once I done with my project !!
... View more
01-30-2020
06:27 AM
1 Like
Hi guys , I am about to start work on my own BCI project with the help of python and octave ., As I am more comfortable with SAS language syntax , just wondering is there any sas suite available for this kind of tasks which involves various techniques like 'signal processing' . Any valuable suggestions are highly appreciated , and if you are someone who already working on similar projects using SAS , please provide some advice and ur experience !
... View more
01-02-2020
12:06 PM
Okay! Finally I did it . Sadly , not using SAS but with the help of beautiful python library which can interact with running window application smoothly !! *import win32com.client
... View more
12-26-2019
04:36 AM
Hi @ErikLund_Jensen , just now gone through the code , it is really inspiring and of course it works like a charm I don't understand why you are using tranwrd here ..can you please elaborate bit more input @1 s $char255.; s = tranwrd(s,'09'x,' '); recno = _N_;s = tranwrd(s,'09'x,' '); Thanks you again!
... View more
12-19-2019
10:27 AM
Inspired by@Shmuel post - https://communities.sas.com/t5/SAS-Programming/Searching-SAS-code-for-keywords/m-p/390379/highlight/true#M93625
... View more
12-19-2019
09:15 AM
I am doing some mass code update task, for that will have to find only the proc sql step from all the sas code in certain path , it has been very boring and time taking process of manually going in to all the code ans search "proc sql" .. though I am using sas code to find all the code with "proc sql" keyword, it is picking only that particular line , not the whole sql script under "proc sql". Just wondering , is there any simplest way I can take proc sql step from sas code, either by using file handling program or sas EG ? -SAR
... View more
12-18-2019
04:51 AM
by connecting exchanage lib , it is a tedious job and it will import all the outlook data at first then only we can do the filtering, .. Will try excel macro idea ..
... View more