-
Notifications
You must be signed in to change notification settings - Fork 2
Example 03: Type casting and data extraction (selection)
Maurice HT Ling edited this page Dec 2, 2015
·
1 revision
https://github.com/mauriceling/tapps/blob/master/examples/example_03.py
#################################################################
# Example 03: Type casting and data extraction (selection)
#################################################################
set cwd /Users/mauriceling/Dropbox/MyProjects/tapps/data
load csv STI_2015.csv as STI
cast Open in STI as nonalpha
select from STI as STI_H where Open > 3000
select from STI as STI_L where Open < 820
select from STI as STI_01 where Volume = '0'
cast all in STI as nonalpha
select from STI as STI_02 where Volume = 0
Copyright (c) 2015, Maurice HT Ling on behalf of all authors and TAPPS Development Team.