-
Notifications
You must be signed in to change notification settings - Fork 52
/
ut.q
244 lines (203 loc) · 8.67 KB
/
ut.q
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
\d .ut
/ assert minimum required version of q
/ throw verbose exception if x <> y
assert:{if[not x~y;'`$"expecting '",(-3!x),"' but found '",(-3!y),"'"]}
assert[2016.05.12] 2016.05.12&.z.k / supports random permutation 0N?
assert[3.4] 3.4&.z.K / supports reshape for an arbitrary list of dimensions
/ data loading utilities
/ load (f)ile if it exists and return success boolean
loadf:{[f]if[()~key f;:0b];system "l ",1_string f;1b}
unzip:$["w"=first string .z.o;"7z.exe x -y -aos";"unzip -n"]
gunzip:$["w"=first string .z.o;"7z.exe x -y -aos";"gunzip -f -N -v"]
untar:"tar -xzvf" / tar is now in windows 10 system32
/ (b)ase url, (f)ile, (e)xtension, (u)ncompress (f)unction
download:{[b;f;e;uf]
if[0h=type f;:.z.s[b;;e;uf] each f];
if[l~key l:`$":",f;:l]; / local file exists
if[()~key z:`$":",f,e;z 1: .Q.hg`$":",0N!b,f,e]; / download
if[count uf;system 0N!uf," ",f,e]; / uncompress
l}
/ load http://yann.lecun.com/exdb/mnist/ dataset
mnist:{
d:first (1#4;1#"i") 1: 4_(h:4*1+x 3)#x;
x:d#$[0>i:x[2]-0x0b;::;first ((2 4 4 8;"hief")@\:i,()) 1:] h _x;
x}
/ load http://etlcdb.db.aist.go.jp/etlcdb/data/ETL9B dataset
etl9b:{(2 1 1 4 504, 64#1;"hxxs*",64#" ") 1: x}
/ general utilities
/ generate a sequence of (s)-sized steps between (b)egin and (e)nd
sseq:{[s;b;e]b+s*til 1+floor 1e-14+(e-b)%s}
/ generate a sequence of (n) steps between (b)egin and (e)nd
nseq:{[n;b;e]b+til[1+n]*(e-b)%n}
/ round y to nearest x
rnd:{x*"j"$y%x}
/ allocate x into n bins
nbin:{[n;x](n-1)&floor n*.5^x%max x-:min x}
/ table x cross y
tcross:{value flip ([]x) cross ([]y)}
/ return memory (used;allocated;max)
/ returned in units specified by x (0:B;1:KB;2:MB;3:GB;...)
mem:{(3#system"w")%x (1024*)/ 1}
/ given a dictionary mirroring the group operator return value, reconstruct
/ the original ungrouped list. generate the dictionary key if none provided
ugrp:{
if[not type x;x:til[count x]!x];
x:@[sum[count each x]#k;value x;:;k:key x];
x}
/ append a total row and (c)olumn to (t)able
totals:{[c;t]
t[key[t]0N]:sum value t;
t:t,'flip (1#c)!enlist sum flip value t;
t}
/ surround a (s)tring or list of stings with a box of (c)haracters
box:{[c;s]
if[type s;s:enlist s];
m:max count each s;
h:enlist (m+2*1+count c)#c;
s:(c," "),/:(m$/:s),\:(" ",c);
s:h,s,h;
s}
/ use (w)eight vector or dictionary to partition (x). (s)ampling (f)unction:
/ til = no shuffle, 0N? = shuffle, list or table = stratify
part:{[w;sf;x]
if[99h=type w;:key[w]!.z.s[value w;sf;x]];
if[99h<type sf;:x (floor sums n*prev[0f;w%sum w]) _ sf n:count x];
x@:raze each flip value .z.s[w;0N?] each group sf; / stratify
x}
/ one-hot encode vector, (symbol columns of) table or (non-key symbol
/ columns of) keyed table x.
onehot:{
if[98h>t:type x;:u!x=/:u:distinct x]; / vector
if[99h=t;:key[x]!.z.s value x]; / keyed table
D:.z.s each x c:where 11h=type each flip x; / list of dictionaries
D:string[c] {(`$(x,"_"),/:string key y)!value y}' D; / rename uniquely
x:c _ x,' flip raze D; / append to table
x}
/ Heckbert's axis label algorithm
/ use Heckbert's values to (r)ou(nd) or floor (x) to the nearest nice number
nicenum:{[rnd;x]
s:`s#$[rnd;0 1.5 3 7;0f,1e-15+1 2 5f]!1 2 5 10f;
x:f * s x%f:10 xexp floor 10 xlog x;
x}
/ given suggested (n)umber of labels and the (m)i(n) and (m)a(x) values, use
/ Heckbert's algorithm to generate a series of nice numbers
heckbert:{[n;mn;mx]
r:nicenum[0b] mx-mn; / range of values
s:nicenum[1b] r%n-1; / step size
mn:s*floor mn%s; / new min
mx:s*ceiling mx%s; / new max
l:sseq[s;mn;mx]; / labels
l}
/ plotting utilities
/ cut m x n matrix X into (x;y;z) where x and y are the indices for X
/ and z is the value stored in X[x;y] - result used to plot heatmaps
hmap:{[X]@[;0;`s#]tcross[til count X;reverse til count X 0],enlist raze X}
/ using (a)ggregation (f)unction, plot (X) using (c)haracters limited to
/ (w)idth and (h)eight. X can be x, (x;y), or (x;y;z)
plot:{[w;h;c;af;X]
if[type X;X:enlist X]; / promote vector to matrix
if[1=count X;X:(til count X 0;X 0)]; / turn ,x into (x;y)
if[2=count X;X,:count[X 0]#1]; / turn (x;y) into (x;y;z)
if[not `s=attr X 0;c:1_c]; / remove space unless heatmap
l:heckbert[h div 2].(min;max)@\:X 1; / generate labels
x:-1_nseq[w] . (min;max)@\:X 0; / compute x axis
y:-1_nseq[h] . (first;last)@\:l; / compute y axis
Z:(y;x) bin' "f"$X 1 0; / allocate (x;y) to (w;h) bins
Z:af each X[2]group flip Z; / aggregating overlapping z
Z:c nbin[count c;0f^Z]; / map values to characters
p:./[(h;w)#" ";key Z;:;value Z]; / plot points
k:@[count[y]#0n;0|y bin l;:;l]; / generate key
p:reverse k!p; / generate plot
p}
c10:" .-:=+x#%@" / 10 characters
c16:" .-:=+*xoXO#$&%@" / 16 characters
c68:" .'`^,:;Il!i><~+_-?][}{1)(|/tfjrxn" / 68 characters
c68,:"uvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$"
plt:plot[19;10;c10;avg] / default plot function
/ generate unicode sparkline (with nulls rendered as spaces)
spark:{
s:("c"$226 150,/:129+til 8) nbin[8] x; / map to 8 unicode characters
if[n:count w:where null x;s[w]:(n;3)#"c"$226 128 136]; / replace null values
s:raze s;
s}
/ image manipulation utilities
/ remove gamma compression
gexpand:{?[x>0.0405;((.055+x)%1.055) xexp 2.4;x%12.92]}
/ add gamma compression
gcompress:{?[x>.0031308;-.055+1.055*x xexp 1%2.4;x*12.92]}
/ convert rgb to grayscale
grayscale:.2126 .7152 .0722 wsum
/ create netpbm bitmap using ascii (or (b)inary) characters for matrix x
pbm:{[b;X]
s:($[b;"P4";"P1"];-3!count'[(X;X 0)]);
s,:$[b;enlist"c"$raze((0b sv 8#)each 8 cut raze::)each flip X;" "0:"b"$X];
s}
/ create netpbm graymap using ascii (or (b)inary) characters for matrix x
pgm:{[b;mx;X]
if[b;if[255<mx|max (max') X;'`limit]]; / binary version has 255 max
s:($[b;"P5";"P2"];-3!count'[(X;X 0)];string mx);
s,:$[b;enlist "c"$raze flip X;" "0:"h"$X];
s}
/ create netpbm pixmap using ascii (or (b)inary) characters for matrix x
ppm:{[b;mx;X]
if[b;if[255<mx|max (max') (max'') X;'`limit]]; / binary version has 255 max
s:($[b;"P6";"P3"];-3!count'[(X;X 0)];string mx);
s,:$[b;enlist "c"$2 raze/flip X;" "0:raze flip each "h"$X];
s}
/ text utilities
/ map (u)nicode characters to their (a)scii equivalents
ua:(!/) 2 1 0#""
ua["\342\200\223"]:"--" / endash
ua["\342\200\224"]:"---" / emdash
ua["\342\200[\231\230]"]:"'" / single quotes
ua["\342\200[\234\235]"]:"\"" / double quotes
ua["\342\200\246"]:"..." / ellipses
ua["\302\222"]:"'" / single quotes
ua["\302\241"]:"!" / !
ua["\302\243"]:"$" / pound symbol
ua["\302\260"]:"o" / o
ua["\302\262"]:"^2" / ^2
ua["\302\263"]:"^3" / ^3
ua["\302\267"]:"-" / -
ua["\302\274"]:"1/4" / 1/4
ua["\302\275"]:"1/2" / 1/2
ua["\302\276"]:"3/4" / 3/4
ua["\302\277"]:"?" / ?
ua["\303[\200\201\202\203\204\205]"]:"A" / A
ua["\303\206"]:"AE" / AE
ua["\303\207"]:"C" / C
ua["\303[\210\211\212\213]"]:"E" / E
ua["\303[\214\215\216\217]"]:"I" / I
ua["\303\220"]:"D" / D
ua["\303\221"]:"N" / N
ua["\303[\222\223\224\225\226\230]"]:"O" / O
ua["\303[\231\232\233\234]"]:"U" / U
ua["\303\235"]:"Y" / y
ua["\303\237"]:"s" / s
ua["\303[\240\241\242\243\244\245]"]:"a" / a
ua["\303\246"]:"ae" / ae
ua["\303\247"]:"c" / c
ua["\303[\250\251\252\253]"]:"e" / e
ua["\303[\254\255\256\257]"]:"i" / i
ua["\303\260"]:"d" / d
ua["\303\261"]:"n" / n
ua["\303[\262\263\264\265\266\270]"]:"o" / o
ua["\303[\271\272\273\274]"]:"u" / u
ua["\303\275"]:"y" / y
ua:1_ua
/ map (h)tml entities to their (a)scii equivalents
ha:(!/) 2 1 0#""
ha["<"]:"<" / <
ha[">"]:">" / >
ha["&"]:"&" / &
ha["'"]:"'" / '
ha["""]:"\"" / "
ha[" "]:" " /
ha:1_ha
/ map (p)unctuation characters to their (w)hitespace replacements
pw:(!/) 2 1 0#""
pw["[][\n\\/()<>@#$%^&*=_+.,;:!?-]"]:" " / replace with whitespace
pw["['\"0-9]"]:"" / delete
pw:1_pw
/ search (s)tring for all instances of key[d] and replace with value[d]
sr:{[d;s] ssr/[s;key d;value d]}