Closed SSMK-wq closed 4 years ago
This has been corrected in the latest version (1.0.5). Thank you for finding this error.
Hi,
This error still exists. I get the same error again. I have downloaded the recent package from github.
Everytime, I run my R code, I repeat the below steps which I believe gets the latest version from Github
install.packages("drat")
drat::addRepo("OHDSI")
install.packages("FeatureExtraction")
install.packages("DatabaseConnector")
install.packages("SqlRender")
install.packages("PatientLevelPrediction")
install.packages("dplyr")
install.packages("stringr")
install.packages("data.table")
install.packages("PheValuator")
library(dplyr)
library(stringr)
library(data.table)
library(PheValuator)
library(SqlRender)
library(DatabaseConnector)
library(FeatureExtraction)
library(PatientLevelPrediction)
SessionInfo() command produces the below output and you can see it is version 1.0.5
Can help us with this please?
I have made another change that will hopefully correct this issue. Please re-load the package and test. Please let me know whether your test was successful.
Yes, this issue can be closed now.
Hi,
I encountered another error while I was trying to execute the CreateEvaluationCohort function.
Please find the error report shown below
`DBMS: postgresql
Error: org.postgresql.util.PSQLException: ERROR: invalid input syntax for integer: "2e+06" Position: 993
SQL:
Two issues here
1) Why the row_number(rn) is in exponential form? ex : rn <= cast('2e+06' as bigint). You can see in the query
2) Where is this "eligibles" stored? Under which schema? I don't see it under temp schema. So when I manually tried to execute the above query, I encountered an error as
Can help us with this?