data _null_;
dsid=open('outpath.test');
check=varnum(dsid,'col_name');
if check=0 then put 'Variable does not exist';
else put 'Variable is located in column ' check +(_1) '.';
run;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.wrapper | |
div#inbox | |
div.footer. | |
Built with React and powered by ES6. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defcustom company-backends `(;; Emacs Lisp | |
;; In newer versions of Emacs, company-capf is used instead. | |
,@(unless (version< "24.3.51" emacs-version) | |
(list 'company-elisp)) | |
;; BBDB https://www.emacswiki.org/emacs/CategoryBbdb | |
company-bbdb | |
;; nxml-mode | |
;; In Emacs >= 26, company-capf is used instead. | |
,@(unless (version<= "26" emacs-version) | |
(list 'company-nxml)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(eval-and-compile | |
(customize-set-variable | |
'package-archives '(("org" . "https://orgmode.org/elpa/") | |
("melpa" . "https://melpa.org/packages/") | |
("gnu" . "https://elpa.gnu.org/packages/"))) | |
(package-initialize) | |
(unless (package-installed-p 'use-package) | |
(package-refresh-contents) | |
(package-install 'use-package))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os,sys | |
import pandas as pd | |
import numpy as np | |
if len(sys.argv)<2: | |
print "Usage: python profile.py csv_file" | |
os.exit(0) | |
fname = sys.argv[1] | |
df = pd.read_csv(fname) | |
cols = df.columns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function<String, Integer> lengthFunction = new Function<String, Integer>() { | |
public Integer apply(String string) { | |
return string.length(); | |
} | |
}; |