palate 0.3.8

File type detection combining tft and hyperpolyglot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Example DATA step code for linguist */

libname source 'C:\path\to\file'

data work.working_copy;
	set source.original_file.sas7bdat;
run;

data work.working_copy;
	set work.working_copy;
	if Purge = 1 then delete;
run;

data work.working_copy;
	set work.working_copy;
	if ImportantVariable = . then MissingFlag = 1;
run;