The Legacy Learner
Thursday, June 20, 2019
Python: Pandas read_csv encoding
›
I was unable to read a client's data file as I normally would due to odd encoding. Normally I would open the files with Notepad++ to c...
Monday, May 20, 2019
PySpark: counts with commas
›
PySpark: counts with commas. print("There are {:,} rows.".format(df.count()))
Thursday, February 21, 2019
SAS: put (_all_)(=/);
›
From my co-worker Ken A: I just now discovered put (_all_)(=/); Makes a nice list of data step variables in the log.
Wednesday, January 16, 2019
SAS: Eliminate duplicate records without variables list
›
SAS: Eliminate duplicate records without variables list Trick: Use noduprecs on the proc sort statement, and _ALL_ in the by statement...
Wednesday, January 9, 2019
SAS: Issues with creating macro variables within a parameterized macro?
›
Issues with creating macro variables within a parameterized macro? See also http://support.sas.com/documentation/cdl/en/mcrolref/6188...
Thursday, January 3, 2019
SAS: PROC FORMAT PICTURE example.
›
SAS: PROC FORMAT PICTURE example proc format ; picture ExcelDate LOW - HIGH = '%0m/%0d/%Y %0H:%0M %p' ( DATATYPE = DATETIM...
Thursday, August 23, 2018
SAS: Time each task
›
%put >>>>>--------------------------------------------------------------------------------------------- ; %put >>>...
›
Home
View web version