search for: diag01

Displaying 2 results from an estimated 2 matches for "diag01".

2012 Jan 10
1
Extracting Data from SQL Server
...codes (CVD_ICD$ table). Given the size of the patient table I want to restrict the data I pull into R to the data I only want to analyse so I am using SQL to do this. The code i have is as follows: library(RODBC) channel<-odbcConnect("NatCollections") query<-"SELECT UNIQUE_ID, diag01 from LoadPUS WHERE (diag01 IN (SELECT [ICD-10 Codes] From CVD_ICD10$)) OR (diag02 IN (SELECT [ICD-10 Codes] From CVD_ICD10$)) OR (diag03 IN (SELECT [ICD-10 Codes] From CVD_ICD10$))" This returns duplicate values, I don't want to hardcode the values because it is quite a long list. Runnin...
2011 Oct 27
0
[LLVMdev] llc with long-longs and hex floating point
In the following sequence: $llc -march=c -o diag01_c.c diag01.ll $vpolcc.ss -S -k diag01_c.c <<== **FAILS** $vpolcc.ss -o diag01 diag01_c.s I am using llc (from llvm) to convert an .ll file into a .c file. I am then running the .c file through vpolcc.ss (from zephyr) to further process it for mips architecture. The vpolcc.ss script fa...