OHDSI / EvidenceSynthesis

An R package for combining evidence from multiple sources (e.g. multiple data sites)
https://ohdsi.github.io/EvidenceSynthesis/
8 stars 8 forks source link

Allow likelihood approximations to be `tibble` #7

Open schuemie opened 2 years ago

schuemie commented 2 years ago

Statements like these throw errors when data is a tibble.

schuemie commented 7 months ago

Still a problem, but the offending code has moved here:

if (any(is.infinite(data[, column]))) {

throws an error because data[, column] returns a vector if data is a data frame, but a tibble if data is a tibble.