{
   "name": "fbsql",
   "abstract": "Closure-preserving formula-based statistical modeling in SQL",
   "description": "FbSQL is a PostgreSQL extension that proposes a statistical modeling DSL faithful to SQL design principles: set-oriented, declarative, closed over relations (relation in, relation out), order-independent, and consistent with SQL NULL semantics. Models are specified with R formula notation; fbsql.fit_glm() fits a GLM (gaussian or binomial) via PL/R and returns a single relation of term rows with model-level columns and a jsonb metadata column, and fbsql.predict_glm() scores a relation from that model relation alone, without R. glm is the first proof of concept of the design.",
   "version": "0.1.0",
   "date": "2026-07-17T04:03:31Z",
   "maintainer": [
      "Koki Tsuyuzaki <k.t.the-answer@hotmail.co.jp>"
   ],
   "release_status": "stable",
   "user": "koki",
   "sha1": "ef110008eed4efcb4451d30aebf5535903df39b2",
   "license": "mit",
   "prereqs": {
      "runtime": {
         "requires": {
            "PostgreSQL": "16.0.0",
            "plr": "8.4.0"
         }
      }
   },
   "provides": {
      "fbsql": {
         "abstract": "Formula-based GLM fitting and prediction as relations",
         "docfile": "README.md",
         "file": "sql/fbsql--0.1.0.sql",
         "version": "0.1.0"
      }
   },
   "tags": ["statistics", "glm", "regression", "logistic regression", "formula", "machine learning", "plr", "r"],
   "resources": {
      "bugtracker": {
         "web": "https://github.com/dsc-chiba-u/FbSQL/issues"
      },
      "homepage": "https://github.com/dsc-chiba-u/FbSQL",
      "repository": {
         "type": "git",
         "url": "https://github.com/dsc-chiba-u/FbSQL.git",
         "web": "https://github.com/dsc-chiba-u/FbSQL"
      }
   }
}
