commit 1e7cc2a71b24cd72a8864ea91775dc1c84f478d7 Author: Jinotech Date: Sun Sep 20 05:17:11 2026 +1200 chore(repo): initialize reproducible research workspace diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ccc6913 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Raw and local reference data +/Dataset/ +/LLM-based Agent构建/ + +# Project-local runtimes and package libraries +/.python/ +/.venv-research/ +/.r-library/ +/.tools/ + +# Downloads and caches +/.downloads/ +/.cache/ +/.uv-cache/ +/Model.cachepytensor/ +**/__pycache__/ +**/node_modules/ +*.py[cod] +.ipynb_checkpoints/ + +# Rebuildable native outputs +/research/environment/cuda-smoke.exe +*.obj +*.exp +*.lib +*.pdb + +# R and editor state +.Rhistory +.RData +.Ruserdata +.Rproj.user/ +.vscode/ +.idea/ + +# OS metadata +Thumbs.db +.DS_Store + +# Model weights and large binary checkpoints +*.safetensors +*.ckpt +*.pth +*.pt +*.onnx diff --git a/.learnings/ERRORS.md b/.learnings/ERRORS.md new file mode 100644 index 0000000..b85a394 --- /dev/null +++ b/.learnings/ERRORS.md @@ -0,0 +1,671 @@ +# Errors + +Command failures and integration errors. + +--- + +## [ERR-20260920-006] powershell-empty-pipe + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +A final artifact verification command piped directly from a PowerShell `foreach` statement and produced an empty-pipe parser error. + +### Error +`ParserError: An empty pipe element is not allowed.` + +### Context +Read-only existence and size verification for the four Stage 0 deliverables and Progression.md. + +### Suggested Fix +Collect `foreach` output into an array first, then pipe the array to `Format-Table`. + +### Metadata +- Reproducible: yes +- Related Files: `Progression.md` +- Pattern-Key: shell.nonzero-exit + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: The corrected command verified all required deliverables exist and contain data. + +--- + +## [ERR-20260920-004] progression-patch-context + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: docs + +### Summary +A combined large patch failed because one Progression.md context line did not match byte-for-byte. + +### Error +`apply_patch verification failed: Failed to find expected lines` + +### Context +Attempted to create the project charter and update multiple distant sections of the progress archive in one patch. + +### Suggested Fix +Split artifact creation from progress updates and use smaller, exact context anchors confirmed with `rg`. + +### Metadata +- Reproducible: unknown +- Related Files: `Progression.md`, `research/protocol/project_charter.md` +- Pattern-Key: config.patch-context-mismatch + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Re-read the mandatory context and split the operation into smaller patches. +- **Recurrence-Count**: 2 +- **Last-Seen**: 2026-09-20 + +--- + +## [ERR-20260920-005] spreadsheet-marker-path + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +The spreadsheet skill's operation marker was not located at the dependency-root path shown by the generic example. + +### Error +`Cannot find module ...dependencies\\container_tools\\mark_artifact_operation_started.mjs` + +### Context +Preparing to author the literature matrix with the bundled artifact runtime. + +### Suggested Fix +Resolve the marker from the installed spreadsheet skill directory rather than the dependency root. + +### Metadata +- Reproducible: yes +- Related Files: `research/protocol/literature_matrix.xlsx` +- Pattern-Key: config.missing-script + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Located the marker under the versioned spreadsheet skill and ran it successfully before authoring. + +--- + +## [ERR-20260920-002] restricted-system-inventory + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +WMI, `Get-Volume`, and `systeminfo` returned access denied during the environment audit. + +### Error +`Access denied` / `拒绝访问` + +### Context +Attempted read-only OS, RAM, and volume inventory inside the managed Windows execution environment. + +### Suggested Fix +Use unprivileged fallbacks: .NET runtime information, `Microsoft.VisualBasic.Devices.ComputerInfo`, and `Get-PSDrive`. + +### Metadata +- Reproducible: yes +- Related Files: `research/audit/environment_audit.md` +- Pattern-Key: fs.permission-denied + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Fallback interfaces returned OS architecture, physical RAM, and filesystem free space without escalation. + +--- + +## [ERR-20260920-003] python-package-detection + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +The first package audit used import names derived mechanically from distribution names and produced unreliable missing-package results; a follow-up also attempted to import absent `psutil`. + +### Error +`ModuleNotFoundError: No module named 'psutil'` + +### Context +Auditing the local Python scientific stack. Distribution names such as `scikit-learn` do not map mechanically to import names. + +### Suggested Fix +Query installed distribution versions directly with `importlib.metadata.version()` and handle `PackageNotFoundError` without importing packages. + +### Metadata +- Reproducible: yes +- Related Files: `research/audit/environment_audit.md` +- Pattern-Key: deps.module-not-found + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: The final package table was generated directly from distribution metadata; hardware memory used a .NET fallback. + +--- + +## [ERR-20260920-001] pdf-to-markdown-encoding + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: docs + +### Summary +PDF text extraction failed because Python wrote a Unicode character that could not be encoded using the Windows default code page. + +### Error +`UnicodeEncodeError: 'gbk' codec can't encode character` + +### Context +Attempted to extract text from `Document/项目的正式定位.pdf` before passing it through Pandoc. + +### Suggested Fix +Force UTF-8 output with `PYTHONIOENCODING=utf-8`. + +### Metadata +- Reproducible: yes +- Pattern-Key: shell.encoding-error + +--- +## [ERR-20260920-007] winget-access-denied + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: pending +**Area**: infra + +### Summary +The Windows Package Manager launcher exists but cannot be executed from the managed environment. + +### Error +`Program 'winget.exe' failed to run: 系统无法访问此文件。` + +### Context +Attempted to inventory/install R, Python, and CUDA Toolkit through the standard Windows package manager after the user authorized environment remediation. + +### Suggested Fix +Use vendor-provided official installers, or retry `winget` outside the restricted environment if explicit escalation makes the launcher accessible. + +### Metadata +- Reproducible: yes +- Related Files: `Progression.md`, `research/audit/environment_audit.md` +- Pattern-Key: tool.access-denied + +--- +## [ERR-20260920-008] uv-python-patch-path + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +The virtual-environment command hard-coded a Python 3.12 patch-version path that differed from the version resolved by `uv`. + +### Error +`No interpreter found at path .python\\cpython-3.12.11-windows-x86_64-none\\python.exe` + +### Context +`uv python install 3.12` correctly resolved CPython 3.12.14, while the following command assumed 3.12.11. + +### Suggested Fix +Resolve the installed interpreter path from `uv python find` or enumerate the installation directory rather than hard-coding a patch version. + +### Metadata +- Reproducible: yes +- Related Files: `Progression.md` +- Pattern-Key: config.version-path-mismatch + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Located `E:\\Model\\.python\\cpython-3.12.14-windows-x86_64-none\\python.exe`; subsequent environment creation will use this exact path. + +--- +## [ERR-20260920-009] research-env-smoke-failures + +**Logged**: 2026-09-20 +**Priority**: high +**Status**: pending +**Area**: infra + +### Summary +The first research-environment runtime test found cache-permission, package-API, and CPU-only PyTorch problems despite a clean dependency-metadata check. + +### Error +`PermissionError` for PyTensor/Matplotlib/skrub cache paths; `TypeError: check_array() got an unexpected keyword argument 'force_all_finite'`; `torch.cuda.is_available() is false`. + +### Context +Executed PyMC sampling, semopy CFA, factor analysis, module imports, and a CUDA matrix multiplication in the new Python 3.12 environment. + +### Suggested Fix +Redirect all caches into the writable project tree, pin a factor-analyzer-compatible scikit-learn release, and reinstall a matched Torch/TorchVision/TorchAudio set from the official CUDA wheel index. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/smoke_test.py`, `research/environment/smoke-test-result.json`, `Progression.md` +- Pattern-Key: deps.runtime-compatibility + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Redirected caches into `E:\\Model\\.cache`, pinned scikit-learn 1.6.1, and installed matched CUDA 13.0 builds of Torch 2.14.0 and TorchVision 0.29.0. Torchaudio was removed because no same-generation official wheel exists and the project has no audio workload. Final closure is supported by the second smoke test recorded in `Progression.md`. + +--- +## [ERR-20260920-010] torchaudio-release-mismatch + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +The requested CUDA 13.0 Torch 2.14 stack could not be resolved because the official index does not publish torchaudio 2.14.0 for Windows/Python 3.12. + +### Error +`No solution found ... there is no version of torchaudio==2.14.0`. + +### Context +Attempted to align torch, torchvision, and torchaudio at the Torch 2.14 generation using the official CUDA 13.0 wheel index. + +### Suggested Fix +Do not install torchaudio when the project has no audio workload; keep only matched torch and torchvision CUDA builds. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/python-requirements.in`, `Progression.md` +- Pattern-Key: deps.release-mismatch + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Removed torchaudio from the project requirements and smoke-test contract after verifying the official index. + +--- +## [ERR-20260920-011] r-installer-file-race + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +The silent R installer returned before the first immediate `Rscript` invocation observed the completed target files. + +### Error +`Rscript.exe is not recognized` immediately after installer return. + +### Context +Installed R 4.6.1 into the project-local tools directory with the official CRAN Windows installer. + +### Suggested Fix +After installer return, poll for the expected executable or perform a separate verification step before declaring failure. + +### Metadata +- Reproducible: unknown +- Related Files: `Progression.md` +- Pattern-Key: installer.completion-race + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: A follow-up inventory showed a complete installation; `Rscript` reported R 4.6.1 x64 successfully. + +--- +## [ERR-20260920-012] r-smoke-false-positive + +**Logged**: 2026-09-20 +**Priority**: high +**Status**: resolved +**Area**: tests + +### Summary +The first R smoke test marked the mirt test as passed even though the fitted model reported non-convergence. + +### Error +The JSON result contained `status: passed` together with `converged: false`. + +### Context +The test wrapper treated any expression that returned without raising an R error as success; the mirt block returned its optimizer flag but did not assert it. + +### Suggested Fix +Use data generated from an identifiable 2PL model and raise an explicit error unless `fit@OptimInfo$converged` is true. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/r-smoke-test.R`, `research/environment/r-smoke-test-result.json`, `Progression.md` +- Pattern-Key: tests.missing-assertion + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Added an explicit convergence assertion, identifiable 2PL simulation, and a higher EM-cycle ceiling. A second run is required for environmental acceptance. + +--- +## [ERR-20260920-013] tool-poll-key-escaping + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +Two CUDA installer status polls failed because a hyphenated nested-tool argument key was not quoted in JavaScript. + +### Error +`SyntaxError: Unexpected string` / `SyntaxError: Invalid or unexpected token`. + +### Context +Polling an already-running installer session; the failed polls did not send input or alter the installer process. + +### Suggested Fix +Quote hyphenated object keys, e.g. `{"yield-time_ms": 30000}`. + +### Metadata +- Reproducible: yes +- Related Files: `Progression.md` +- Pattern-Key: tooling.javascript-object-key + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Corrected the key quoting and continued polling the same session until the installer returned exit code 0. + +--- +## [ERR-20260920-014] vsdevcmd-nested-quoting + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +The first CUDA compile command failed before invoking the compiler because nested `cmd.exe` quoting truncated the Visual Studio path at the first space. + +### Error +`'""C:\\Program' is not recognized as an internal or external command`. + +### Context +Attempted to chain `VsDevCmd.bat`, nvcc, and the smoke executable in a single quoted `cmd.exe /c` string. + +### Suggested Fix +Capture the environment emitted by `VsDevCmd.bat && set`, import it into the PowerShell process, then invoke nvcc directly with argument boundaries managed by PowerShell. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/cuda-smoke.cu`, `Progression.md` +- Pattern-Key: shell.windows-nested-quoting + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Switched to importing the Visual Studio environment before compiler invocation; the corrected compile is recorded separately in `Progression.md`. + +--- +## [ERR-20260920-015] nvcc-host-compiler-path + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: infra + +### Summary +nvcc could not find `cl.exe` after Visual Studio environment variables were copied from a child cmd process into PowerShell. + +### Error +`nvcc fatal: Cannot find compiler 'cl.exe' in PATH`. + +### Context +The MSVC component and compiler file were installed, but cross-shell environment import was insufficient for nvcc host-tool discovery. + +### Suggested Fix +Run `vcvars64.bat`, nvcc, and the resulting binary inside one cmd process using a checked-in build script. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/cuda-smoke-build.cmd`, `research/environment/cuda-smoke.cu`, `Progression.md` +- Pattern-Key: toolchain.environment-propagation + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Created a single-shell build script after verifying the exact MSVC 14.44 compiler path with vswhere. + +--- +## [ERR-20260920-016] lock-cache-permissions + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: infra + +### Summary +Python and R lock export failed because uv and renv attempted to initialize caches under restricted user-profile directories. + +### Error +`Failed to initialize cache ... uv\\cache` and `failed to create directory ... R/cache/R/renv`. + +### Context +The runtime caches had been redirected, but the package-manager-specific cache variables were not yet included. + +### Suggested Fix +Set `UV_CACHE_DIR` and `RENV_PATHS_ROOT` to writable project-local directories for both activation and export commands. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/activate-research.ps1`, `Progression.md` +- Pattern-Key: fs.package-manager-cache-permission + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Added project-local uv and renv cache roots; lock export is retried as a separate audited action. + +--- +## [ERR-20260920-017] r-lock-export-schema + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: infra + +### Summary +The R lock snapshot was written, but the auxiliary installed-package export failed due to an assumed metadata column and an incomplete library search path. + +### Error +`subscript out of bounds` for the `Repository` column; renv warned that R-recommended packages were missing. + +### Context +The export indexed a fixed column list from `installed.packages(lib.loc=project_library)` and passed only the project library to renv. + +### Suggested Fix +Combine the project library with `.Library`, and select only metadata columns that actually exist before writing CSV. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/renv.lock`, `Progression.md` +- Pattern-Key: data.schema-assumption + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: The corrected export uses both library roots and intersects requested fields with returned column names; final verification is a separate action. + +--- +## [ERR-20260920-018] apply-patch-same-file-multiple-operations + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: docs + +### Summary +A patch attempted to delete and add the same audit file in one invocation and was rejected before making changes. + +### Error +`multiple operations target ... environment_audit.md`. + +### Context +Replacing the completed environment audit while also adding usage documentation and updating progression state. + +### Suggested Fix +Split full-file replacement into separate delete and add operations, then patch other files separately. + +### Metadata +- Reproducible: yes +- Related Files: `research/audit/environment_audit.md`, `Progression.md` +- Pattern-Key: tooling.patch-operation-conflict + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: No file changed in the rejected patch; the replacement is retried in valid discrete operations. + +--- +## [ERR-20260920-019] apply-patch-hunk-order + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: docs + +### Summary +A combined README/progression patch was rejected because two progression hunks were ordered opposite to their line order in the file. + +### Error +`Failed to find expected lines in Progression.md` even though the lines existed. + +### Context +One hunk targeted a later risk-table line before another hunk targeted an earlier confirmed-facts line. + +### Suggested Fix +Order update hunks from top to bottom within each file, or split unrelated file additions and updates. + +### Metadata +- Reproducible: yes +- Related Files: `research/environment/README.md`, `Progression.md` +- Pattern-Key: tooling.patch-hunk-order + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Added the README separately and applied progression hunks in file order. + +--- +## [ERR-20260920-020] git-dubious-ownership + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: infra + +### Summary +Git refused repository status checks after initialization because the workspace owner differs from the managed execution account. + +### Error +`fatal: detected dubious ownership in repository at 'E:/Model'`. + +### Context +The repository directory is owned by the Windows Administrators group while commands run as CodexSandboxOffline. + +### Suggested Fix +Add only the exact repository path to Git's global `safe.directory`; do not use a wildcard. + +### Metadata +- Reproducible: yes +- Related Files: `.git`, `Progression.md` +- Pattern-Key: git.safe-directory + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: The exact-path exception is applied as the next audited action before staging. + +--- +## [ERR-20260920-021] git-candidate-node-modules + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: infra + +### Summary +The first Git candidate set unintentionally included a nested `node_modules` tree, expanding the proposed commit to 7,832 files and about 321 MiB. + +### Error +Candidate-size audit showed large native modules and generated JavaScript under `research/experiments/node_modules`. + +### Context +The initial `.gitignore` covered research runtimes and caches but omitted generic nested Node dependencies. + +### Suggested Fix +Add `**/node_modules/` before staging and rerun the size audit. + +### Metadata +- Reproducible: yes +- Related Files: `.gitignore`, `Progression.md` +- Pattern-Key: git.generated-dependency-tree + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: Added the nested dependency ignore rule before any files were staged. + +--- +## [ERR-20260920-022] git-index-lock-permission + +**Logged**: 2026-09-20 +**Priority**: medium +**Status**: resolved +**Area**: infra + +### Summary +The first staging attempt could read the repository but could not create `.git/index.lock` under the managed filesystem profile. + +### Error +`fatal: Unable to create 'E:/Model/.git/index.lock': Permission denied`. + +### Context +The workspace is writable, while repository metadata is protected and requires the authorized elevated Git operation path. + +### Suggested Fix +Retry only the required Git index/commit operations with escalation; do not change workspace ownership or weaken filesystem permissions. + +### Metadata +- Reproducible: yes +- Related Files: `.git`, `Progression.md` +- Pattern-Key: git.index-lock-permission + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: No files were staged in the failed attempt; the audited candidate set is retried with scoped Git authorization. + +--- +## [ERR-20260920-023] git-null-excludesfile + +**Logged**: 2026-09-20 +**Priority**: low +**Status**: resolved +**Area**: infra + +### Summary +Git for Windows rejected `NUL` as an explicit global excludes file override. + +### Error +`fatal: cannot use NUL as an exclude file`. + +### Context +The override was intended only to silence warnings from an unreadable user-level ignore file; project ignore rules were already valid. + +### Suggested Fix +Remove the override and tolerate the harmless warning, or use an actual readable empty file if silence is necessary. + +### Metadata +- Reproducible: yes +- Related Files: `.gitignore`, `Progression.md` +- Pattern-Key: git.excludesfile-windows-device + +### Resolution +- **Resolved**: 2026-09-20 +- **Notes**: The override is removed; no index changes occurred in the failed attempt. + +--- diff --git a/.learnings/FEATURE_REQUESTS.md b/.learnings/FEATURE_REQUESTS.md new file mode 100644 index 0000000..3be3c58 --- /dev/null +++ b/.learnings/FEATURE_REQUESTS.md @@ -0,0 +1,5 @@ +# Feature Requests + +Capabilities requested by the user. + +--- diff --git a/.learnings/LEARNINGS.md b/.learnings/LEARNINGS.md new file mode 100644 index 0000000..470d5d7 --- /dev/null +++ b/.learnings/LEARNINGS.md @@ -0,0 +1,5 @@ +# Learnings + +Corrections, insights, and knowledge gaps captured during development. + +--- diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..8f209b9 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,33 @@ +# 项目工作约定 + +## 强制进度协议 + +本项目的研究工作以以下两个文件为持续上下文: + +- `Document/research-workflow.md`:研究阶段、Gate、交付物与停机条件的唯一工作流基准。 +- `Progression.md`:项目当前状态、行动记录、证据、未解决问题与下一步的唯一进度档案。 + +每次执行任何项目研究行动时,必须遵守: + +1. 行动前完整读取 `Document/research-workflow.md` 和 `Progression.md`。 +2. 对照工作流确认当前阶段、允许的动作、预期交付物和适用 Gate。 +3. 执行动作,不把计划、既有报告或未经复核的材料记作新结果。 +4. 行动后立即编辑 `Progression.md`,至少记录时间、阶段、动作、输入、输出、检查结果、未解决问题和下一步。 +5. 只有交付物及检查证据满足工作流要求时,才可把阶段标为 `passed`;证据不足时使用 `in_progress`、`conditional`、`blocked` 或 `failed`。 + +该协议适用于数据盘点、文献检索、代码或模型开发、统计分析、文档写作、审查和文件管理。只读的临时诊断若直接服务于同一个已登记行动,可合并为一条行动记录,但仍须在行动结束时更新 `Progression.md`。 + +## 强制 Git 协议 + +本项目使用根目录 Git 仓库保存可复现的研究历史。每次“推进一步”必须形成一个边界清楚、可审计的提交,并遵守以下顺序: + +1. 行动开始前,在读取工作流与进度档案的同时检查 `git status --short`,识别并保护用户已有或无关改动。 +2. 只修改当前行动范围内的文件;不得擅自覆盖、撤销或混入用户的其他改动。 +3. 完成行动和验证后,先更新 `Progression.md`,写明输出、检查结果、提交/推送状态与下一步。 +4. 检查 `git diff` 和待提交文件清单,只暂存本行动相关文件;严禁提交凭据、原始/受限数据、解释器、虚拟环境、R library、安装器、缓存、模型权重或可重建的大型二进制。 +5. 为每个完成的推进动作创建一个非交互式 Git 提交;提交信息应简洁说明阶段与动作,不得把多个无关行动压成一个提交。 +6. 若已配置远程与上游分支,提交成功后必须立即执行 `git push`,并把结果记录到 `Progression.md`。 +7. 若没有远程、缺少凭据或推送失败,不得声称已推送;在 `Progression.md` 标为 `push_pending` 或 `push_failed` 并记录原因。远程一旦配置,开始下一项研究行动前应先推送所有待推提交。 +8. 删除、改写历史、强制推送、变基已共享提交或变更远程地址仍需用户明确授权;本协议不自动授权破坏性 Git 操作。 + +根目录 `.gitignore` 是版本化边界的一部分。新增大文件类型、数据目录、模型缓存或生成物时,必须先判断是否应忽略;不得依赖事后从历史中清除敏感或超大文件。 diff --git a/Document/language-conditioned-psychometric-harmonization-model.md b/Document/language-conditioned-psychometric-harmonization-model.md new file mode 100644 index 0000000..97ea87b --- /dev/null +++ b/Document/language-conditioned-psychometric-harmonization-model.md @@ -0,0 +1,151 @@ +# 跨国家、跨年份与跨调查工具的语言条件化心理测量协调模型 + +## 一、项目定位 + +本项目拟开发一个可迁移的 **language-conditioned psychometric harmonization model**,用于协调不同国家、不同年份和不同调查工具中的青少年心理健康与自杀相关表型。 + +模型的核心问题不是比较 XGBoost、随机森林和深度学习的预测性能,也不是主要预测某个人是否会自杀,而是判断不同问卷措辞、语言、时间窗口、答案编码和文化背景是否测量了同一个心理构念,并将这些不完全等价的测量结果映射到统一、可比较的潜在表型空间。 + +## 二、研究目标 + +模型需要同时学习: + +1. 问卷题目在语义上测量的心理构念; +2. 题目在真实人群中的心理测量属性; +3. 国家、年份、调查工具和人群背景对题目测量结果的影响; +4. 不同问卷之间可比较的个体潜在表型及其不确定性。 + +最终目标是让不同国家、不同年份、不同调查工具和不同问法测得的心理健康/自杀相关表型进入同一个 measurement space,并能够迁移到训练时未见过的新题目、新问卷版本和新国家。 + +## 三、模型输入 + +### 1. 题目语义与测量信息 + +- question text; +- construct; +- time window; +- response options; +- response encoding; +- language; +- 可选的题目来源、题目版本和翻译信息。 + +### 2. 调查背景信息 + +- country; +- year; +- survey/instrument; +- questionnaire version; +- population; +- 其他与抽样、文化和调查实施有关的 context。 + +### 3. 受访者回答数据 + +- person × item response matrix; +- survey weight; +- PSU; +- stratum; +- 可选的年龄、性别等协变量,以及缺失模式和调查实施信息。 + +## 四、模型核心 + +模型采用 **semantic encoder + hierarchical psychometric model** 的架构。语义编码器从题目文本、时间窗口、答案选项和语言等信息中提取题目表示;分层心理测量模型结合 survey context 与 response patterns,学习题目在不同调查环境下的测量属性,并估计个体潜在表型。 + +核心不是简单地使用 LLM embedding 进行分类,而是学习一个从 + +> item semantics + survey context + response patterns + +到 psychometric properties 的可迁移映射。 + +### 主要估计对象 + +- **Discrimination(a)**:题目区分不同潜在水平受访者的能力; +- **Threshold / difficulty(b)**:有序或分类回答对应的潜在水平阈值; +- **DIF(Differential Item Functioning)**:题目在不同国家、年份、语言、调查工具或人群中的测量差异; +- **Latent phenotype(θ)**:经过跨问卷校准后的个体潜在心理表型; +- **Uncertainty**:题目参数、DIF、个体得分和群体估计的不确定性。 + +可根据题目类型使用适当的 IRT、graded response、multidimensional 或其他层级心理测量形式;具体形式应服从题目的 construct、答案编码和数据结构,而不预先限定为单一模型。 + +## 五、模型输出 + +### 1. Item-level output + +- 题目所属 construct; +- discrimination 参数 (a); +- threshold/difficulty 参数 (b); +- 国家、年份、语言、调查工具和人群层面的 DIF; +- 与已有题目的等值关系、语义相似度和可替代性; +- 参数估计及其 uncertainty。 + +### 2. Person-level output + +- 经过跨问卷校准的 latent phenotype score (\theta); +- 个体得分的 uncertainty; +- 必要时输出多维 latent phenotype,而不是强制压缩为单一分数。 + +### 3. Population-level output + +- 不同国家和年份的 harmonized phenotype distribution; +- 经过调查设计校正的 prevalence 或分位数估计; +- 跨调查、跨国家、跨年份的可比群体差异; +- 与 survey weight、PSU、stratum 相一致的标准误和不确定性区间。 + +## 六、最重要的迁移能力 + +模型的关键创新不是证明“LLM 让 AUC 提高了”,而是证明模型学习到了一个 **transferable psychometric measurement function**。 + +训练时应有意识地完全留出部分: + +- item/question; +- questionnaire 或 instrument version; +- country; +- survey year; +- population subgroup。 + +在测试阶段,只向模型提供新题目的语义、调查 context 和少量 response data,评估其能否: + +1. zero-shot 或 few-shot 恢复新题目的 psychometric parameters; +2. 识别新题目与已有题目的 construct 和等值关系; +3. 估计新国家、新问卷或新版本中的 DIF; +4. 将新调查回答映射回已有的统一 latent space; +5. 给出可靠的不确定性,而不是只输出一个过度确定的点估计。 + +因此,**unseen item / unseen survey / unseen country transfer** 应作为模型最重要的能力和主要验证目标。 + +## 七、验证框架 + +验证重点应从普通预测性能转向测量等价性、校准能力和迁移能力,包括: + +- 留出题目后的 item parameter recovery; +- 留出问卷版本后的 harmonization; +- 留出国家或文化背景后的 transfer; +- 少量回答条件下的 few-shot calibration; +- 参数、个体分数和群体分布的不确定性校准; +- 与 anchor items、已建立量表或专家标注的一致性; +- 对问卷措辞、时间窗口和答案编码变化的敏感性分析; +- 使用 survey weight、PSU、stratum 后的群体估计有效性。 + +评价指标可包括参数恢复误差、DIF 检测准确性、latent score 一致性、群体分布距离、测量不变性指标、区间覆盖率和跨域校准误差。AUC、F1 等分类指标最多作为辅助分析,不应作为项目的主要成功标准。 + +## 八、构念可扩展性 + +架构应保持 construct-agnostic。自杀相关表型可以作为主要 benchmark,但模型不应被设计成只能处理 suicide risk。后续可扩展到: + +- depression; +- psychological distress; +- anxiety; +- substance use; +- wellbeing; +- 其他可通过问卷题目测量的心理健康构念。 + +如果同一套语义条件化与心理测量协调机制能够跨 construct 泛化,将进一步支持该方法作为通用的跨文化、跨调查心理测量基础设施,而非单一任务的预测模型。 + +## 九、最简洁的项目概括 + +**Input:** item semantics + survey context + response data + +**Model:** semantic encoder + hierarchical psychometric model + +**Output:** item parameters + DIF + harmonized latent phenotype + uncertainty + +**最终目的:** 将不同国家、不同年份、不同调查工具和不同问法测得的心理健康/自杀相关表型映射到统一、可比较且可迁移的 measurement space,并对训练中未见过的新题目、新问卷和新国家完成 zero-shot 或 few-shot psychometric calibration 与 harmonization。 diff --git a/Document/research-workflow.md b/Document/research-workflow.md new file mode 100644 index 0000000..fd9606c --- /dev/null +++ b/Document/research-workflow.md @@ -0,0 +1,418 @@ +# 语言条件化心理测量协调模型:研究工作流 + +版本:1.0|日期:2026-09-20|状态:工作流设计完成,研究执行尚未开始。 + +## 1. 目标与设计依据 + +本流程依据同目录下的《项目的正式定位》和《language-conditioned-psychometric-harmonization-model》设计。用户所称 `/Documents` 在当前项目中对应 `E:\Model\Document`。 + +核心目标是:用官方题目语义、调查背景与真实回答,估计题目参数、差异项目功能(DIF)、可比较的潜在表型及其不确定性;检验这种映射能否迁移到未见题目、问卷版本和国家。 + +优先检验的研究假设:在相同回答数据、调查设计处理和测试划分下,题目语义相对于无文本层级模型及人工构念标签,可以改善跨域测量与校准。研究必须允许该假设不成立;完成工作流不等于保证模型优于基线或达到发表标准。 + +第一版称为 **language-conditioned psychometric harmonization model**。只有获得充分的跨构念、跨数据集和跨任务迁移证据,再讨论 foundation model 的称谓。 + +本次完整阅读了两份项目文件,浏览了当前会话的全部技能目录,重点核对了学术研究、论文、审稿、SEM/IRT 与 PyMC 技能的职责和适用流程;同时抽查数据说明、质量报告及 NSDUH 构念映射表。尚未逐行审计个体数据、复核所有官方问卷或拟合模型。下文的“现有报告”与“建议验收条件”均不能当作本次重新计算的结果。 + +## 2. 当前材料如何影响路线 + +| 已观察到的材料 | 当前证据及限制 | 工作流中的处理 | +|---|---|---| +| 两份项目定位文件 | 目标清楚;详细文件中的若干数学公式存在转换缺损 | 以自然语言要求为依据,在模型规格中重新写清公式和识别约束 | +| GSHS 质量报告 | 现有报告记载 673,499 行、165 项调查、191 个非重叠组件,另有 10 项调查需范围复核;本次未重算 | 主开发候选;先核对组件、适用总体、官方文本、设计变量和题目共现 | +| GSHS 变量说明 | 同名 `raw_` 列不保证同义;权重、PSU、stratum 是待确认的候选字段 | 建立调查特异的题目版本 ID 与设计字典,不能直接按列名合并 | +| YRBS 全国原始库 | README 记载 1991–2023 年原始文件 | 原始文件存在与可直接分析是两个状态 | +| NSDUH/YRBS 整理包 | README 表明 YRBS 可分析表覆盖 1991–2019;2021、2023 等待导入布局验证 | 先审计是否已有后续修复;若没有,按官方导入程序验证后再解封 | +| NSDUH 构念映射 | 成人题、青少年题、COVID 条件题及派生变量混在候选表中;部分行没有原问题 | 回到完整字典及问卷核对青少年模块,不以 selected 表作为最终题目全集 | +| NSDUH 标签示例 | 2021 年 `YUSUITHK`、`SUICTHNK` 的候选构念同时包含 ideation 与 attempt;`SUIPLANYR` 标题明确为成人题 | 这是需要人工核实的映射问题;自动构念标签不能直接成为训练真值 | +| WHO/World Bank 背景表 | README 说明部分指标稀疏,WHO 资源数据不是完整年度面板 | 在题目模型建立后再加入;按可用时间匹配,避免未来信息泄漏 | +| LLM Agent 论文目录 | 从文件名看主要涉及规划、工具调用与多智能体 | 可供后续工程参考;本次未全文阅读,不能充当心理测量方法的核心文献依据 | + +CDC 当前页面列出了 2021、2023 年的 SAS 导入及格式程序,可作为修复本地 YRBS 导入状态的来源;是否与本地文件匹配仍需验证。[CDC 年度数据与文档](https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html) + +## 3. 总体流程和分支 + +```mermaid +flowchart TD + A[目标与数据版本登记] --> B[官方题库与回答字典] + B --> C[可识别性与题目多样性审计] + C --> D{证据支持哪条路线} + D -->|连接充分且可识别| E[IRT / 层级测量模型] + D -->|题目少或阶段结构更合适| F[多结局 / 潜类别 / 阶段模型] + D -->|缺乏可靠连接| G[直接协调与分调查分析] + E --> H[冻结划分与模拟验证] + F --> H + G --> H + H --> I[直接协调与传统基线] + I --> J[题目语义增益实验] + J --> K{是否支持语义模型} + K -->|支持| L[语言条件化模型与少样本适配] + K -->|不足| M[补充桥接数据或形成边界性结果] + L --> N[外部验证与完整消融] + M --> N + N --> O[可复现成果与论文审查] +``` + +文献定位可与题库整理同时推进;模型开发必须等待相应数据与识别条件满足。技术验收通过后,在已授权的执行范围内继续,不把每次常规检查变成用户确认。 + +## 4. 阶段 0:冻结研究问题、范围与版本 + +**目的:** 明确哪些证据能够支持核心主张,以及数据适用总体。 + +工作: + +1. 建立文件清单、来源、哈希、重复及组件关系,选定唯一分析入口;保留原始文件。 +2. 将 GSHS 设为跨国开发候选,YRBS 设为问卷及时间迁移候选,NSDUH 青少年模块设为外部候选。实际角色以审计结果为准。 +3. 定义年龄、在校状态、地域覆盖和调查年份。主分析优先限定在能够可靠识别的共同年龄与总体范围;无法统一的总体分层报告,不把学校样本直接外推到全部青少年。 +4. 分开记录测量构念:意念、计划、尝试、自伤、悲伤/绝望。后两者是否进入共同测量模型必须有理论和数据支持。 +5. 将欺凌、孤独、睡眠、物质使用、家庭与同伴支持、暴力暴露放在解释层。解释层首先报告关联,不能凭横断面数据得出因果或个体纵向预测结论。 +6. 进行聚焦文献定位:跨调查协调、语义预测 IRT 参数、跨语言 DIF、复杂抽样下的层级模型、新题目校准。建立与最接近方法的贡献比较表,不能预设“首创”。 +7. 检查实际运行环境、软件版本、可用内存/GPU、存储、嵌入获取方式和许可;本流程不预设已经具备全部依赖。 + +**技能:** `deep-research` 的文献与方法设计模块;`self-improving-agent` 记录已验证的工程问题。 + +**交付物:** `project_charter.md`、`data_manifest.csv`、`literature_matrix.csv`、`environment_audit.md`。 + +**Gate 0:** 有明确的目标总体、主要迁移任务、数据来源及待验证列表。文献不必无限扩展,先覆盖支撑研究定位与识别方案的关键问题。 + +## 5. 阶段 1:建立有来源证据的题库和回答层 + +**目的:** 把原始调查转为可以审计的测量资料。 + +### 5.1 必要的数据实体 + +| 实体 | 最少字段 | +|---|---| +| 调查/组件 | `survey_id, component_id, country, year, scope, population, language, questionnaire_version` | +| 题目实例 | `item_version_id, item_family_id, source_variable, question_text, construct, time_window, response_type, language` | +| 回答字典 | `item_version_id, raw_code, raw_label, canonical_code, missing_type, derivation_rule` | +| 回答长表 | `respondent_id, survey_id, component_id, item_version_id, raw_response, canonical_response, eligibility, observed_status` | +| 抽样设计 | `survey_id, weight_field, psu_field, stratum_field, variance_method, design_source` | +| 来源和审核 | `source_file, source_url, page_or_section, text_hash, reviewer_1, reviewer_2, review_status` | +| 候选连接 | `item_pair, relation_type, semantic_evidence, population_overlap, anchor_status, exclusion_reason` | + +`item_family_id` 连接同一题目的改写、翻译和版本;`item_version_id` 区分实际措辞、时间窗口、答案选项和适用条件。调查中的题目实例另保留来源身份。原始回答、派生指标、插补版本不得伪装为多个独立题目。 + +长表是保存回答和缺失状态的主格式;按调查生成稀疏的 person × item 矩阵及共现矩阵,避免创建大而稀疏的全库密集矩阵。 + +### 5.2 必须处理的事项 + +- 官方问题、答案标签、年龄范围和跳题逻辑逐项核对;只获得变量标题时标为待核实,不补写成“官方原文”。 +- 官方译文、实际施测语言、研究者翻译分别记录;仅有英语参考问卷不能证明实际以英语施测。 +- 区分未施测、不适用、合法跳题、拒答、不知道、普通缺失和真实阴性。合法跳题能否推导为阴性只能按明确的官方规则处理。 +- 主要结局由两名实际审核者复核并记录;AI 的两次检查可作预审,不能登记成两名人类审核者。尚无人类复核的条目标为 provisional,先用于流程开发。 +- 主要结局不能仅从自动筛选的 selected 表收集,应与完整字典核对,防止遗漏尝试次数等关键字段。 +- 多调查合并时为 PSU/stratum 增加调查或组件命名空间,并按官方设计保留必要关联,防止相同编号误合并。 +- YRBS 的原始文件、导入程序、标签、样本数和官方描述性结果需相互核对后才标为 ready。 + +**技能:** 执行时按需加载 `pdf`、`documents:documents` 读取问卷,`spreadsheets:Spreadsheets` 生成供审核的字典。本阶段仍需要项目专用的数据解析和检查代码;文档技能本身不执行统计协调。 + +**交付物:** `item_bank.csv`、`response_dictionary.csv`、`survey_design.csv`、`construct_ontology.yaml`、`responses_long.parquet`、`item_links.csv`、`source_conflicts.csv`。 + +**Gate 1:** 正式分析题目均有来源、编码、总体及缺失规则;主要结局完成所要求的双重核查。待核实题目保留在候选库,不能静默进入确认性分析。 + +## 6. 阶段 2:可行性、可识别性和连接审计 + +**这是全项目最先应完成的科学交付。** + +按国家 × 年份 × 工具 × 组件 × 构念统计:有效题目数、共同作答人数、阳性事件数、答案分布、缺失/跳题比例、设计变量完整性,以及考虑设计后的精度指标。权重推导的有效样本量可作筛查,但不能替代完整抽样设计方差。 + +同时生成: + +- person × item 回答矩阵及 item × item 共现矩阵; +- 调查—题目二部图、候选锚题图、连通分量和薄弱桥接点; +- 去重后的题目家族数、措辞版本数、语言数、时间窗口与回答形式多样性; +- 国家、工具、语言、年份与样本人群的混杂/秩亏表; +- 跨组件重复或重叠样本风险表。 + +### 6.1 审计决策 + +| 路线 | 需要的证据 | 不足时如何处理 | +|---|---|---| +| IRT / 多维测量 | 理论支持、实际共答、足够回答变化、明确标度与识别约束,且参数恢复可靠 | 简化维度、限制参数、改用其他观测模型或直接协调 | +| 层级跨组链接 | 可靠的锚定/桥接及足够连接,潜在均值与 DIF 可被区分 | 分连通分量分析;增加桥接样本;将无法识别的部分标为模型外推 | +| 阶段/潜类别/多结局 | 相应结构有证据支持 | 不强制假设“意念→计划→尝试”严格嵌套,检查无计划尝试等回答 | +| 直接二分类/频数协调 | 官方定义、时间范围、选项和总体足够相近 | 保留多个定义层级或分调查报告,不强行二元合并 | + +语义相近只产生候选锚题,不证明测量不变性;图连通也是必要线索而非充分的可识别性证明。允许少数部分不变锚题、锚题替换和留锚敏感性分析,但选择只能依据训练/开发资料。 + +国家潜在均值、国家题目阈值平移和无约束 DIF 可能混淆。模型规格必须写明参考组/标度、锚题约束及 DIF 约束。跨调查没有经验连接时,语义先验不能自动证明共同标度被数据识别。 + +**特别注意:** 语义到题目参数的学习,独立信息单位主要是题目家族与版本。受访者数量大不能弥补题目种类少。阈值不凭经验随意定为“每组至少多少人”,而应结合预期精度、设计效应、事件稀疏度和模拟参数恢复制定。 + +**技能:** `alterlab-sem-psychometrics`、`pymc-modeling`。前者引用的 `alterlab-ssci-measurement-gate`、`alterlab-statistical-analysis` 和 `alterlab-ssci-inference-gate` 不在当前可用技能目录;不能将这些依赖写成已经执行。其职责在本项目中转为显式审计清单和代码检查。 + +**交付物:** `feasibility_audit.md`、`construct_feasibility.csv`、`item_cooccurrence.parquet`、`anchor_graph.graphml`、`identification_spec.md`、`item_diversity_report.md`。 + +**Gate 2:** 每个构念得到“可进入潜变量模型 / 有条件可进入 / 仅可直接协调 / 暂不纳入”的判定与依据。最小可行实验的调查、构念及题目集合在此确定。 + +## 7. 阶段 3:冻结验证协议并做已知真值模拟 + +**目的:** 在查看最终测试表现前,定义成功、失败和计算可靠性的含义。 + +### 7.1 外层测试任务 + +| 任务 | 训练时必须留出什么 | 测试时允许使用什么 | +|---|---|---| +| 未见题目家族 | 同一家族所有目标回答与监督信号;训练不能混入其翻译/近重复版本 | 新题目正文、选项、时间窗口及预先允许的背景 | +| 未见问卷版本 | 指定版本及泄漏等价版本 | 版本元数据与题目文本;few-shot 时另给支持集 | +| 未见国家 | 该国全部年份和组件的回答 | 预先允许的国家背景;未知国家效应从层级分布预测并传播不确定性 | +| 未见地区 | 整个预定地区的回答 | 与未见国家任务一致;国家/地区定义预先冻结 | +| 时间外 | 截点后的回答和后验信息 | 截点前训练资料;背景变量按预测时点可得性匹配 | +| 跨工具 | 整个目标工具的回答 | 经总体与定义审计后的外部问卷信息 | + +未见题目家族与已知家族的新措辞是不同难度的任务,分别报告。所有预处理、降维、文本模型选择、先验调优和锚题筛选在内层训练/验证中完成。 + +Zero-shot 明确指“不使用目标题目/目标域的回答来拟合其参数”。对测试受访者使用其他允许的回答推断 θ 时,必须遮蔽正在评分的回答;没有可用回答时,对 θ 的预测分布积分。不能用某个回答推断 θ 后又对同一回答报 held-out 得分。 + +Few-shot 将目标域分成支持集和查询集;按 PSU 或独立受访者分离,依据实际设计避免聚类泄漏。可预设 0、25、100、500 个支持受访者的学习曲线,具体预算由审计和抽样单元决定,这些数值是候选实验设置而非样本充分性标准。 + +### 7.2 模拟实验 + +用已知参数生成:无 DIF/弱 DIF/强 DIF、少锚题、稀有事件、不同维度、结构性缺失与跳题、组间均值不同、抽样权重差异、国家与语言混杂等场景。 + +检查 a、b、DIF、群体分布及区间覆盖;必要时进行 scoped SBC。SBC 检验推断算法在生成模型下的校准,不证明真实数据符合模型。调查加权伪后验还需另做设计型重复抽样评估,不能直接套用普通生成模型的 SBC 作为充分证据。[Stan:Simulation-Based Calibration Checking](https://mc-stan.org/docs/stan-users-guide/simulation-based-calibration.html) + +真实数据的完整样本 IRT 参数不是已知真值,只能是带不确定性的参照。真实数据参数比较需保持共同标度;对齐不能使用已留出题目的真值信息。 + +**交付物:** `analysis_protocol.md`、`split_manifest.csv`、`simulation_plan.yaml`、`simulation_report.md`、`metrics_spec.yaml`。 + +**Gate 3:** 测试集身份、允许信息、主指标及报告方式冻结;简化模型能够在已知真值场景中可靠恢复。存在不可识别或计算问题时先修复,不通过提高模型复杂度掩盖问题。 + +## 8. 阶段 4:建立直接协调和传统基线 + +采用两条相互关联但不混淆的基线轨道。 + +| 轨道 | 模型 | 作用 | +|---|---|---| +| 测量 M0 | 官方定义下的直接协调 | 结局定义、设计加权比例及不确定性的基线;不能虚构其没有的 θ 或 a/b | +| 测量 M1 | Rasch/2PL/有序 IRT 或审计通过的替代形式 | 不使用语义的测量参照 | +| 测量 M2 | 层级 IRT/层级替代模型,有限 DIF | 检验层级共享本身能带来的迁移改善 | +| 预测 P0/P1 | Logistic、XGBoost;TabPFN 可选 | 检验一般表格预测能否解释附加收益,属于辅助任务 | +| 语义辅助 P2 | 嵌入 + 普通分类/回归模型 | 区分“文本对预测有帮助”和“文本对测量参数迁移有帮助” | + +传统 item-ID 模型无法 zero-shot 生成新题目参数时,明确标为不支持;另提供构念均值/层级先验预测作为可计算的冷启动基线,并报告 few-shot 曲线。不同模型只比较共同支持的估计目标。 + +先验证加权描述性结果与同一总体、同一分母下的官方报告相容;不能通过调整编码“对齐”不匹配的官方总体。 + +复杂抽样处理分为三层:描述性估计及设计方差;模型内声明权重归一化和伪似然等选择;对关键群体估计使用合适的复制权重或设计一致的重抽样检查。权重直接乘进似然不等于区间已经正确。跨国训练权重与各调查群体估计权重分别定义。 + +**技能:** `alterlab-sem-psychometrics`、`pymc-modeling`,以及项目专用复杂抽样代码。SEM 技能中的连续指标 CFA 模板、omega 简式和拟合经验阈值不能不加判断地用于二元、稀有或多维条目。 + +**交付物:** `baseline_results.parquet`、`design_validation.md`、`model_diagnostics.md`、基线参数和预测文件。 + +**Gate 4:** 基线可复现,设计变量保留,主要参数收敛/精度和后验预测检查合格,评估未发生回答或调查泄漏。 + +## 9. 阶段 5:低成本语义增益实验 + +先回答“文本是否包含可迁移的测量信息”,再训练完整模型。 + +1. 分别编码题目正文、时间窗口、选项、整体模板;语言/国家/工具背景单独保存。 +2. 比较可复现的开源多语言嵌入、高性能通用嵌入、领域嵌入;具体模型在执行时按许可、可得性、成本及训练内性能确定并冻结。 +3. 固定编码器起步,采用低维/正则化映射。文本样本少时不默认微调大模型。 +4. 只用训练折拟合题目参数或相关结构,再评估语义是否解释这些测量属性;用参数后验样本或误差模型传播估计不确定性,不能把拟合参数当无误差标签。 +5. 对 item–item correlation 的比较使用共同作答证据,并考虑国家与总体差异;同国相关结构相似不一定是题目语义造成的。 + +**最低限度对照:** 人工构念标签;item-ID;TF–IDF;随机向量;在题目之间打乱嵌入对应关系;打乱词序;删除时间窗口;删除回答标签;单语/多语对照;只有背景无题目文本的模型。 + +词序打乱并不是严格无语义对照,因为部分编码器仍可保留词义;题目—嵌入对应关系置乱更直接检验监督关系。全部置乱遵守题目家族分组,避免只扰动部分重复版本。 + +**交付物:** `item_embeddings.parquet`、`embedding_manifest.json`、`semantic_increment_report.md`、`semantic_controls.parquet`。 + +**Gate 5:** 依据预先冻结的跨题目家族指标、效应区间与实际意义判定增益,不能只凭 UMAP 图或训练相关系数。 + +若语义没有稳定增益:先检查题目多样性、文本/编码错误和任务天花板;扩充真实题目或桥接资料后重新开展明示为新版本的研究,或报告语义增益的适用边界。不能在最终测试集上反复挑模型。 + +## 10. 阶段 6:语言条件化层级测量模型 + +第一版只选审计通过的构念和观测形式。二元模型的示意为: + +\[ +Y_{ijg}\sim\mathrm{Bernoulli}\{\operatorname{logit}^{-1}[a_j(\theta_{ig}-b_j-\delta_{jg})]\}, +\] + +\[ +\log a_j=\alpha_a+f_a(e_j)+r_{aj},\qquad +b_j=\alpha_b+f_b(e_j)+r_{bj}. +\] + +其中 e_j 来自题目语义,r 为有正则化的题目残差;δ 为有约束的组别 DIF。组别可由调查背景定义,但不能将完全混杂的国家、语言和工具效应当作分别可解释的因果效应。 + +这只是结构示意,实施前必须补齐 θ 的参考标度、锚题限制、残差及 DIF 先验、组间分布、权重方式和缺失/跳题的观测机制。有序题目使用有序阈值;不同构念经理论和数据支持后才增加维度,不直接将所有题目塞进单维模型。 + +开发顺序: + +1. **M3a:语义预测阈值。** 固定嵌入,以简单线性/低维映射起步。 +2. **M3b:语义同时预测区分度和阈值。** 与 M3a 比较,判断额外复杂度是否被数据支持。 +3. **M3c:加入有约束的语义 × 背景 DIF。** 与无交互或单纯层级 DIF 比较。 +4. **M4:新题目、新国家和 few-shot 适配。** 更新被允许的局部参数,报告支持集大小与成本;查询集保持封存。 + +新题目的残差、未见国家效应和 DIF 均需从后验预测分布抽取/积分,不能简单设为 0 后给出过窄区间。Zero-shot 的具体国家 DIF 是模型预测,不是已经从该国回答识别出的参数。 + +先在小规模可诊断样本上完成可靠推断,再评估扩展方式。大数据近似推断应在可运行的子集上与高质量采样结果比较。报告采样发散、R-hat、有效样本量、MCSE、先验/后验预测检查;诊断未解决不能作为确认性推断发布。 + +**技能:** `pymc-modeling` 为主要实现依据,`alterlab-sem-psychometrics` 提供测量检查。PyMC/ArviZ 等 API 按实际安装版本核对,不照搬技能文件的版本假设。 + +**交付物:** 模型代码、冻结配置、参数后验、预测文件、`model_card.md`、`adaptation_protocol.md`。 + +**Gate 6:** 计算可靠,复杂度有支持,新域区间包含未见效应的不确定性,且 M3/M4 的结果可与相应传统基线公平比较。 + +## 11. 阶段 7:最终验证、消融和主张判定 + +### 11.1 指标层次 + +| 层次 | 指标与解释 | +|---|---| +| 共同主指标 | 未见题目家族的 held-out log score;未见国家/工具的预先指定共同目标上的校准或分布误差。对每个主张预先指定指标,不能挑表现最好的域 | +| 模拟确认 | 已知真值下 a/b/DIF 及群体量的恢复误差,预设区间的重复覆盖率 | +| 真实数据测量 | 后验预测、局部依赖、DIF 效应与不确定性、锚题敏感性;可靠性指标按模型类型报告 | +| 群体估计 | 设计加权比例/分位数、标准误、共同定义下的差异;参考比例也有抽样误差 | +| 辅助预测 | Brier、校准截距/斜率、AUPRC、AUROC;不以 AUC 单独证明测量协调成功 | +| 迁移成本 | 支持集规模、计算时间、内存、适配稳定性 | + +θ 的任意阈值不能自动叫作患病率。没有经验证的诊断阈值时,报告潜在分布、分位数或指定参考题目上的模型推导阳性比例。 + +真实数据潜变量与参数没有普遍已知的真值,因此不能宣称已经测得“真实 θ 区间覆盖率”。真实数据依靠独立查询回答、设计估计及敏感性分析;参数覆盖率主要由模拟支撑。 + +### 11.2 最低限度消融 + +- M0 → M1 → M2 → M3a → M3b → M3c → M4,区分每项增益来源。 +- 去题目正文、时间窗口、答案标签;去国家/年份背景。 +- 无文本、构念标签、随机/置乱嵌入与背景专用模型。 +- 无 DIF、替换/删除锚题、删除一个调查工具、排除低频题目。 +- 加权与不加权、不同合理权重缩放;PSU/stratum 完整与受限样本。 +- 严格同定义题目与较宽协调定义;缺失/跳题的合理替代假设。 +- 固定嵌入与微调仅在有效题目量足够时比较。 + +按国家/调查等外层独立单元报告配对差异和区间,避免把大量相关回答当作独立的迁移重复。以预先定义的国家宏平均为主时,另报告样本加权结果;国家数少则明确精度有限。 + +亚组按性别、年龄、地区、语言、收入组及可靠可用的其他字段评估。测量 DIF 与预测性能差异分开;本研究没有临床筛选或资源分配决策时,不额外声称已验证政策公平性。 + +**成功判定:** 语义模型在预设迁移任务上相对最佳适用传统基线具有稳定且有实际意义的改善,同时校准/区间质量没有重要退化,并经关键消融支持。最小有意义改善和非劣界限在开发/模拟阶段设定并冻结。 + +某个任务失败时限制对应主张。例如未见国家改善而未见题目不改善,只能支持相应范围的迁移结论。完整验证流程即使得到阴性结果也可形成有价值的基准或方法边界成果。 + +**交付物:** `external_validation_report.md`、`ablation_results.parquet`、`subgroup_results.parquet`、`claims_evidence_matrix.csv`、最终表图。 + +## 12. 阶段 8:可复现交付与论文审查 + +先冻结分析版本,再把结果转换为论文。可提前写引言和方法草稿,结果与结论必须来自已冻结输出。 + +1. `academic-paper`:构建“研究问题—方法—证据—限制”的论证结构。 +2. 完整性审计:核查文献、正文主张、表图数字和分析文件对应关系,注明检查分母、抽样范围及未核实项。 +3. `academic-paper-reviewer`:先方法学审查,再完整审查;角色覆盖心理测量、调查抽样、跨文化迁移与机器学习。多角色 AI 意见不能替代人类专家验证。 +4. `academic-paper` revision:按问题清单修订;复审检查问题是否解决,之后再次进行完整性核查。 +5. 根据目标期刊使用 `apa-style` 或对应引用规范;`humanizer:humanizer` 只改善表达,不改变证据强度或隐藏 AI 使用记录。 +6. 按需用 `documents:documents`、`pdf`、`presentations:Presentations` 输出并检查版式;科研图表使用可复现绘图工具。 + +`academic-pipeline` 适合管理研究到论文的交付、审稿和状态记录。其默认“已有数据→写作”的路由不适合直接用于本项目,必须先经过上述数据、识别和实验门槛。本次仅设计流程,并未启动其完整执行状态机;若后续选择按原版执行,其中阶段确认机制须按用户授权和实际技能规则处理。 + +**最终成果包:** 可追溯题库、数据处理代码、冻结划分、模拟基准、传统与语义模型、参数/预测与区间、实验记录、数据/模型说明卡、论文及补充材料。能否分发原始或衍生个体数据按来源许可另行确认,默认优先交付代码和聚合结果。 + +## 13. 技能分工与真实缺口 + +| 技能/类别 | 使用位置 | 能力边界 | +|---|---|---| +| `deep-research` | 文献定位、方法与证据核验 | 不替代逐题官方字典核对和实际统计分析 | +| `alterlab-sem-psychometrics` | 测量结构、IRT、不变性与可靠性 | 不自带本项目的语义条件化模型或完整复杂抽样实现;若干上游技能未安装 | +| `pymc-modeling` | 分层建模、模拟、诊断、预测 | 不自动保证可识别性、设计一致性和计算可扩展性 | +| `academic-pipeline` | 阶段状态、交付、论文审查编排 | 学术生产管理层,需要接入本项目的实验工作流 | +| `academic-paper` / `academic-paper-reviewer` | 写作、审稿、修订、复核 | 不把模拟审稿当作方法或结果已获外部认可 | +| `pdf` / `documents` / `spreadsheets` | 官方文件提取、审核字典、成果输出 | 提取文字不等于完成官方语义确认 | +| `apa-style` / `humanizer` | 引用与文字质量 | 不生成证据,不提升未经支持的科学主张 | +| `visualize` / `presentations` | 后续展示进展和模型机制 | 科研结果图另用标准可复现绘图;本次用静态流程图已足够 | +| `self-improving-agent` | 记录复现环境和错误修复 | 仅沉淀已核实经验,不作为研究证据 | +| `skill-creator` | 流程跑通后可封装项目技能 | 本次先交付工作流,不提前把未验证流程固化成技能 | + +其余网站、插件管理、图像生成、应用控制及来源标记移除等技能不进入核心研究路线。当前缺口主要是项目专用的题库解析、锚定图审计、复杂抽样评估、无泄漏划分和语义条件化测量模型代码,不是缺少更多通用写作技能。 + +## 14. 实施批次、资源和停机条件 + +### 第一批:拿到可行性答案 + +完成阶段 0–2。优先交付八项:数据版本清单、主要结局来源表、总体/年龄适用表、共现矩阵、锚定图、题目多样性表、构念可行性判定、下一步最小实验定义。完成后才能给出可信的训练规模、硬件需求和工期估计。 + +### 第二批:最小科学闭环 + +从已通过审计的一个构念或明确的多结局结构起步,使用题目来源完整、设计资料完整的连通子集。完成一个已知真值模拟、M0/M1/M2、固定嵌入到阈值的简单映射,以及一个未见题目家族和一个未见国家任务。有效版本不足时如实报告,不能用随机个体划分替代。 + +### 第三批:扩展与正式交付 + +在最小实验和语义增益门槛通过后,再扩展到更多国家、年份、工具、DIF 和 few-shot。第二构念扩展放在主要 benchmark 稳定以后。 + +### 资源策略 + +先读取元数据和小规模样本做验证,不直接在全量受访者上拟合最复杂模型。嵌入按文本哈希和模型版本缓存;中间数据保存为列式表。实测单个基线、单个模拟和单个外层折的时间/内存后估算总预算,不在未审计前承诺固定完成天数。 + +### 停机或降级条件 + +| 条件 | 动作 | +|---|---| +| 官方文本、适用总体或编码无法确认 | 题目暂不进入正式分析,继续可确认部分 | +| 锚定不足、图不连通或标度不可识别 | 分组件报告、直接协调或提出桥接数据方案 | +| 独立题目家族太少 | 简化语义映射并限制泛化主张,优先寻找真实题目多样性 | +| 收敛或参数恢复失败 | 简化/重新参数化,保留失败记录,不发布不可靠推断 | +| 语义收益只出现在随机个体划分 | 判定核心迁移主张未获支持 | +| 最终测试反复被用于调参 | 将该测试集降为开发集,并重新确定独立测试证据 | +| 权重/PSU/stratum 不完整 | 标记推断限制,采用有依据的可用设计方法,不宣称完整设计校正 | + +## 15. 文件与状态管理约定 + +建议执行时在项目中新增以下目录;它们在本次尚未创建: + +```text +E:\Model\ + Document\research-workflow.md + research\protocol\ 研究问题、识别规格、验证协议 + research\audit\ 题库来源、连接审计、可行性报告 + research\metadata\ 题库、字典、构念本体 + research\processed\ 派生回答表与矩阵 + research\splits\ 冻结测试划分 + research\embeddings\ 版本化嵌入与清单 + research\models\ 基线与语义模型 + research\experiments\ 模拟、配置、诊断、运行日志 + research\results\ 已冻结结果与表图 + research\manuscript\ 论文、审稿及修订记录 +``` + +每个阶段记录:`status, input_hashes, config_version, outputs, checks, unresolved_issues, next_action`。状态使用 `not_started / in_progress / passed / conditional / blocked / failed`;只有交付物和检查证据满足要求才标为 passed。证据不足时可以完成一个“有条件”或“不可行”的审计结论,不能把它记为模型已经验证。 + +每次新任务只加载本流程、阶段状态和当前所需输入,避免重复全文读取整个资料库。若后续启用多代理,按官方题库、测量方法和验证审计等清晰边界分工,交接文件并记录来源;多代理不是本工作流成立的必要条件。 + +## 16. 本次查阅的主要依据 + +本地研究目标: + +- [项目的正式定位](E:/Model/Document/项目的正式定位.md) +- [模型定位与输入输出](E:/Model/Document/language-conditioned-psychometric-harmonization-model.md) + +本地数据状态: + +- [整理包说明](E:/Model/Dataset/可直接分析数据包_NSDUH_YRBS/README.md) +- [候选构念映射](E:/Model/Dataset/可直接分析数据包_NSDUH_YRBS/harmonization/construct_crosswalk.csv) +- [GSHS 变量注意事项](E:/Model/Dataset/GSHS-全球学生健康调查数据/GSHS/02_documentation/变量使用注意事项.md) +- [GSHS 现有质量报告](E:/Model/Dataset/GSHS-全球学生健康调查数据/GSHS/04_quality_control/数据质量检查摘要.md) +- [YRBS 原始库说明](E:/Model/Dataset/YRBS_National_1991_2023/README.md) +- [国家背景资料说明](E:/Model/Dataset/WHO-country_context/README.md) + +关键技能: + +- [academic-pipeline](C:/Users/Jino/.codex/skills/academic-pipeline/SKILL.md) +- [deep-research](C:/Users/Jino/.codex/skills/deep-research/SKILL.md) +- [SEM 与心理测量](C:/Users/Jino/.codex/skills/alterlab-sem-psychometrics/SKILL.md) +- [PyMC 建模](C:/Users/Jino/.codex/skills/pymc-modeling/SKILL.md) +- [academic-paper](C:/Users/Jino/.codex/skills/academic-paper/SKILL.md) +- [academic-paper-reviewer](C:/Users/Jino/.codex/skills/academic-paper-reviewer/SKILL.md) + +官方技术来源: + +- [CDC 年度 YRBS 数据与导入文档](https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html):用于确认 2021/2023 官方导入资料入口存在。 +- [Stan SBC 指南](https://mc-stan.org/docs/stan-users-guide/simulation-based-calibration.html):用于推断计算验证的设计;并非真实数据可识别性的替代证据。 + +以上为针对现有项目材料提出的工作流,不是已完成的数据审计或统计研究报告。 + +## 17. GitHub 组件选型补充(2026-09-20) + +已完成首轮外部仓库检索与静态检查,详见 [GitHub 借用评估](E:/Model/Document/github-reuse-assessment.md) 和 [仓库版本登记表](E:/Model/Document/github-repository-registry.json)。优先试验 Harmony、Sentence Transformers、mirt、PyMC 与 R survey 的组合;Rmonize 作为可追溯协调流程的可选组件。 + +接入时先隔离 Harmony 与新版语义编码环境,遵守原有官方题库、可识别性和迁移验证门槛。仓库审阅不代表本地依赖已安装或统计验证已通过。建议后续将文档、代码、配置及数据哈希纳入本地 Git,原始个体数据和大型模型文件另行管理。 diff --git a/Document/项目的正式定位.md b/Document/项目的正式定位.md new file mode 100644 index 0000000..b17ec5d --- /dev/null +++ b/Document/项目的正式定位.md @@ -0,0 +1,162 @@ +A language-conditioned psychometric foundation model for harmonizing +adolescent suicide-risk phenotypes across countries and survey +instruments 中文: 用于跨国家、 +跨调查工具青少年自杀风险表型协调的语言条件化心理测量基础模 型 + +我们计划开发一个用于跨国家、 跨年份和跨调查工具协调青少年自杀相关表型的 +语言条件化心理测量模型。 项目不是简单比较XGBoost、 随机森林和深度学习的 +预测性能, 而是研究不同问卷措辞、 时间窗口、 +答案编码和文化背景是否测量同 一心理构念,以及 LLM +题目语义能否帮助恢复这种可比性。 +第一阶段请先完成模型可行性与可识别性审计。基于现有 GSHS、YRBS 和 NSDUH +数据, 建立受访者—题目回答矩阵、 题目共现矩阵和跨调查锚定题目表。 +逐个国家—年份统计自杀意念、 计划、 尝试、 自伤及悲伤/绝望的有效题目数、 +有 效样本数、 阳性事件数、 缺失机制和跳题条件。 判断哪些构念可以做IRT +或层级 潜变量模型, 哪些只能做直接二分类协调。 +不得仅根据变量名判断题意, 必须使 用已经确认的官方问题、答案标签和编码。 +请把欺凌、孤独、睡眠、物质使用、家庭支持、同伴支持和暴力暴露作为潜在表 +型的解释变量, +不要在没有理论依据的情况下与自杀行为题目共同组成一个量表。 +所有分析必须保留调查权重、PSU、stratum 和国家—年份标识。 +第二阶段建立直接协调、 传统IRT、 层级IRT、Logistic、XGBoost 及可选 +TabPFN 基线。 验证必须采用留一国家、 留一地区、 +留一问卷版本和时间外验证, 不能只 做随机个体划分。 主要评价包括held-out +likelihood、 校准、AUPRC、 加权患病率 误差、DIF 和不确定性覆盖。 +第三阶段使用多语言 LLM 对官方题目正文、 时间窗口和答案标签分别生成嵌入, +检验其能否解释经验题目相关结构和传统 IRT 题目参数。必须设置人工构念标 +签、传统文本特征、随机嵌入、打乱词序和删除时间窗口等对照。 +第四阶段开发语言条件化层级心理测量模型,使 LLM 嵌入预测题目区分度、阈 +值和跨国家 DIF,并实现对未见国家、未见问卷版本和新题目的不确定性推断。 +完整模型必须与传统方法进行消融比较。 + +总体目标 开发一个将官方问卷文本、 答案编码、 +调查背景和个体回答联合起来的模型, 使 不同国家、 +年份和调查工具测得的自杀相关表型具有可比较性, 并量化这种协调 + +结果的不确定性。 主要科学问题 1. 不同问卷中的自杀意念、 计划、 尝试、 +悲伤/绝望等题目, 是否测量相同的 潜在风险结构? 2. +题目措辞、时间窗口和回答方式的变化,会造成多大的测量偏差? 3. LLM +获得的题目语义表示,能否预测题目的难度、区分度、阈值及跨文 化偏移? 4. +加入题目语义后, 能否提升对未见国家、 未见年份和未见问卷版本的表型 +协调能力? 5. 哪些题目在国家、 性别、 年龄、 +调查年份之间存在差异项目功能, 即DIF? 6. +协调后的自杀风险表型,是否比简单的 0/1 变量更稳定、更可迁移? +二、需要先澄清的关键点 这个项目不能一开始就假设所有变量都能做 IRT。 经典 +IRT 通常要求: • 同一受访者回答多个测量同一潜变量的条目; • +不同版本之间存在共同锚定条目; • 每个条目有足够的阳性回答; • +调查间存在可建立连接的重叠题目。 因此,第一项任务必须是“可识别性审计”。 +如果多数受访者只有一条自杀意念题、 一个计划题和一个尝试题, 那么可以构建 +“自杀行为严重程度/阶段”模型,但不能轻易声称建立了高精度临床潜变量量表。 +此外, 不建议把欺凌、 孤独、 +物质使用和家庭支持全部当作“自杀风险量表”的题 目。更合理的结构是: +测量层: 意念、计划、尝试、自伤、悲伤/绝望 ↓ 自杀相关潜在表型 + +解释层: 欺凌、孤独、睡眠、物质使用、家庭支持、 +同伴支持、暴力暴露、国家社会环境 ↓ 解释潜在表型的差异及异质性 +这样测量模型和病因/解释模型不会混淆。 + +三、具体研究目标 Aim 1:建立跨调查的标准化题目知识库 对 GSHS、YRBS 和 +NSDUH 相关题目建立机器可读知识库。 每个题目至少包含: • 官方原文; • +如能获得,调查实施语言和译文; • 变量名; • 构念; • 时间窗口; • +行为对象; • 回答类型; • 原始答案标签; • 原始编码; • 缺失值类型; • +国家; • 年份; • 问卷版本; • 调查工具; • 适用人群和跳题条件; • +weight、PSU、stratum; + +• 官方来源; • 人工确认状态。 交付物: • item_bank.csv • +response_dictionary.csv • survey_design.csv • construct_ontology.yaml • +数据字典和质量报告 验收要求: • 进入正式模型的题目必须有官方文本; • +不得根据变量名猜测题意; • 每个协调变量必须能追溯到官方来源; • +主要结局变量人工双重核查; • 记录冲突和无法确认的变量,不强行填充。 Aim +2:建立语义表示和问卷本体 LLM 输入内容 +不能只输入问题正文。建议将一个题目表示为: Construct: suicidal ideation +Question: During the past 12 months, did you ever seriously consider +attempting suicide? Time window: past 12 months Response options: Yes; +No Population: school-attending adolescents Survey: GSHS Country: … +Year: … Language: English 分别编码: + +• 问题正文嵌入; • 时间窗口嵌入; • 回答标签嵌入; • 调查工具嵌入; • +国家语言背景嵌入; • 题目整体模板嵌入。 至少比较三类嵌入 1. +开源多语言模型; 2. 通用商业或高性能文本嵌入模型; 3. +精神健康领域或医学文本嵌入模型。 +模型名称不应提前写死,以实际可复现性、许可证和数据合规性确定。 +必须设置的对照 • 人工构念标签; • TF–IDF 或传统文本特征; • +不使用文本、只使用题目 ID; • 随机嵌入; • 打乱词序; • 删除时间窗口; • +删除回答标签; • 单语模型与多语言模型。 交付物: • +item_embeddings.parquet • 题目相似度矩阵; • UMAP 或聚类图; • +语义聚类与人工构念的一致性结果; • 不同嵌入模型的稳定性报告。 Aim +3:开发语言条件化心理测量模型 + +建议先建立五级模型体系,不要直接开发最终复杂模型。 M0:直接协调基线 +按官方定义将题目转化为: • 自杀意念:0/1; • 自杀计划:0/1; • +自杀尝试:0/1 或次数; • 悲伤/绝望:0/1; • 自伤:0/1 或频率。 +这是所有高级模型必须超越的基线。 M1:传统心理测量模型 根据数据结构选择: +• binary/graded-response IRT; • two-parameter logistic IRT; • +continuation-ratio model; • latent class analysis; • bifactor model; +• item-factor model。 模型示意: \[ P(Y\_{ij}=1)=^{-1} {a_j(*i-b_j)} \] +其中: • (Y*{ij}):个体 (i) 对题目 (j) 的回答; • +(*i):个体自杀相关潜在表型; • (a_j):题目区分度; • +(b_j):题目阈值或难度。 M2:层级跨国模型 +允许题目参数随国家、年份和调查工具变化: \[ +b*{jcy}=b_j+u_c+v_y+w\_{survey}+\_{jcy} \] + +其中: • (u_c):国家效应; • (v_y):年份效应; • +(w\_{survey}):调查工具效应; • (*{jcy}):题目在特定国家—年份的 DIF。 +必须防止国家、 年份和调查工具完全共线。 无法分离时要降低模型复杂度或改变 +参数化方式。 M3:语言条件化模型 让 LLM 语义嵌入预测题目参数: \[ a_j= +{f_a(e_j)} \]\[ b_j=f_b(e_j) \]\[* {jc}=f\_{}(e_j,z_c) \] 其中: • +(e_j):题目文本、时间窗口和答案标签的语义嵌入; • +(z_c):国家语言及社会环境特征; • +(f_a,f_b,f\_{}):神经网络或贝叶斯函数。 这是项目的核心算法创新。 +M4:不确定性与新调查适配 +对未见过的新题目,只提供其文本和少量回答,即可估计: • +题目属于什么构念; • 可能的题目参数; • 与既有题目的等值关系; • +潜在表型分布; • 预测区间; • 是否超出模型适用范围。 可以使用: • +Bayesian neural network; • deep ensemble; + +• variational inference; • conformal calibration; • hierarchical +shrinkage; • few-shot/in-context adaptation。 “foundation +model”的称谓需要谨慎: 只有当模型能跨构念、 跨数据集和跨任务迁 +移时才适合使用。如果只处理几项自杀题,建议称为: Language-conditioned +psychometric model 这在审稿中会更稳妥。 + +四、模型训练和验证设计 1. 不能随机划分全部个体 随机划分会让同一国家、 +同一问卷版本同时出现在训练集和测试集, 容易产生虚 高结果。 必须包括: • +留一国家验证; • 留一 WHO 地区验证; • 留一调查版本验证; • +早期年份训练、晚期年份测试; • GSHS 训练、YRBS/NSDUH 外部验证; • +低收入国家与高收入国家交叉验证。 2. 三种核心验证任务 Task +A:未见国家迁移 训练时完全排除某个国家,再评价模型能否恢复该国: • +题目参数; • 自杀表型分布; • 加权患病率; • 风险因素排序; + +• 性别差异。 Task B:未见问卷版本迁移 +训练集中不出现某种题目措辞或回答编码,仅用官方题目文本推断新条目参数。 +这是最能体现 LLM 价值的任务。 Task C:跨调查工具迁移 • GSHS 训练; • +YRBS 验证; • NSDUH 青少年样本验证。 +必须先确定目标表型的定义确实可对应,不能直接比较未经协调的发生率。 3. +评价指标 测量质量 • posterior predictive checks; • item characteristic +curves; • test information; • empirical 与预测 item–item correlation; +• factor congruence; • measurement invariance; • DIF 检出率及效应量; +• latent score reliability。 泛化质量 • held-out item log-likelihood; • +held-out country log-likelihood; • Brier score; • AUROC 和 AUPRC; • +calibration slope/intercept; • expected calibration error; • +prevalence estimation error; + +• country-level rank correlation; • uncertainty coverage。 公平性 +至少按以下亚组报告: • 性别; • 年龄; • 地区; • 国家收入组; • +调查语言; • 城乡——如果数据存在; • 边缘化群体——仅在变量可靠时使用。 +需要区分: • 测量公平性:同样潜在风险是否产生相似回答概率; • +预测公平性:模型在不同群体上的性能是否一致; • +政策公平性:固定资源条件下谁被模型筛选出来。 4. 复杂抽样处理 +同事必须保留: • survey weights; • PSU; • stratum; • +国家—年份调查标识。 建议同时进行: 1. survey-weighted 描述性统计; 2. +pseudo-likelihood 或加权 Bayesian 模型; 3. PSU/stratum +稳健方差或重复权重近似; 4. 加权与不加权敏感性分析。 +不能因为神经网络不方便使用复杂抽样设计,就把设计变量删除。 + +五、最重要的消融实验 这是算法稿能否成立的关键。 至少比较: 模型 文本语义 +层级结构 DIF 调查设计 直接 0/1 协调 否 否 否 是 传统 IRT 否 否 部分 可选 +层级 IRT 否 是 是 是 LLM 嵌入+普通分类器 是 否 否 否 语言条件化 IRT 是 +是 是 是 完整模型 是 是 是 是+不确定性 额外消融: • 去除题目正文; • +去除时间窗口; • 去除答案标签; • 去除国家信息; • 去除年份; • +使用随机嵌入; • 替换不同 LLM; • 冻结与微调嵌入; • 删除低频题目; • +删除一个调查工具; • 不使用权重。 如果完整模型只提升随机划分 +AUC,却不能提升未见国家或未见题目的结果, 创新性就不够。 diff --git a/Progression.md b/Progression.md new file mode 100644 index 0000000..e214e72 --- /dev/null +++ b/Progression.md @@ -0,0 +1,625 @@ +# 项目进度档案 + +版本:1.2 +建立日期:2026-09-20 +当前总状态:`in_progress` +当前阶段:阶段 0 已完成并完成环境补强;下一行动进入阶段 1 + +## 1. 管理规则 + +本档案严格对照 [`Document/research-workflow.md`](Document/research-workflow.md) 维护。每次项目研究行动前必须完整读取工作流与本档案;行动完成后必须更新本档案。项目级强制规则同时记录于 [`AGENTS.md`](AGENTS.md)。 + +状态只使用:`not_started / in_progress / passed / conditional / blocked / failed`。 + +行动记录至少包含: + +- 时间与阶段 +- 动作及目的 +- 输入及其版本或哈希(适用时) +- 输出文件 +- 检查和证据 +- 未解决问题 +- 下一步 + +“已读取”“已设计”“已有报告称”与“已经重新验证”必须明确区分。未经本项目当前执行重新核验的结果不得升级为已验证证据。 + +## 2. 阶段状态 + +| 阶段 | 名称 | 状态 | 当前判定 | +|---|---|---|---| +| 0 | 冻结研究问题、范围与版本 | `passed` | 四项交付物齐备,Gate 0 已通过;研究工具链补强与锁定完成 | +| 1 | 有来源证据的题库和回答层 | `not_started` | 环境阻断已解除;下一行动启动阶段 1 | +| 2 | 可行性、可识别性和连接审计 | `not_started` | 等待 Gate 1 | +| 3 | 冻结验证协议与已知真值模拟 | `not_started` | 等待 Gate 2 | +| 4 | 直接协调和传统基线 | `not_started` | 等待 Gate 3 | +| 5 | 低成本语义增益实验 | `not_started` | 等待 Gate 4 | +| 6 | 语言条件化层级测量模型 | `not_started` | 等待 Gate 5 | +| 7 | 最终验证、消融和主张判定 | `not_started` | 等待 Gate 6 | +| 8 | 可复现交付与论文审查 | `not_started` | 等待阶段 7 的冻结结果 | + +## 3. 当前冻结方向 + +- 项目暂定名称:language-conditioned psychometric harmonization model。 +- 首要任务是阶段 0–2 的可行性和可识别性审计,不直接训练完整复杂模型。 +- GSHS 为跨国开发候选;YRBS 为问卷与时间迁移候选;NSDUH 青少年模块为外部候选。最终角色由审计决定。 +- 测量层暂分为自杀意念、计划、尝试、自伤、悲伤/绝望;解释变量不与结局题目无依据地混成单一量表。 +- 核心验证必须覆盖未见题目家族、未见问卷版本、未见国家/地区和时间外验证;随机个体划分不能作为核心证据。 +- 工作流允许阴性结果;“完成流程”不等于模型优于基线或达到发表标准。 + +## 4. 阶段 0 交付物状态 + +| 交付物 | 状态 | 路径/说明 | +|---|---|---| +| `project_charter.md` | `passed` | 已完成 [`research/protocol/project_charter.md`](research/protocol/project_charter.md),冻结阶段 0–2 的研究问题、总体政策、构念边界、迁移任务、范围外事项与待验证清单 | +| `data_manifest.csv` | `passed` | 已完成 [`research/audit/data_manifest.csv`](research/audit/data_manifest.csv),共 734 个文件;来源登记、项目角色、唯一候选入口、分析就绪与许可/分发状态已补充,并另有来源组与重复摘要 | +| `literature_matrix.csv` | `passed` | 已完成 [`research/protocol/literature_matrix.csv`](research/protocol/literature_matrix.csv);13 条核验来源(11 条同行评审、2 条预印本),另有可读工作簿与定位综合 | +| `environment_audit.md` | `passed` | 已完成并更新 [`research/audit/environment_audit.md`](research/audit/environment_audit.md);Python、R、复杂抽样、心理测量与 CUDA 工具链均已运行验收并锁定 | + +Gate 0 当前判定:`passed`。四项交付物齐备;目标总体政策、主要迁移任务、数据来源、范围边界和待验证列表均已明确。许可及数据版本问题已登记为后续显式验证项,不再是未记录的未知状态。 + +## 5. 已确认的本地事实 + +- 正确工作流路径为 `E:\Model\Document\research-workflow.md`;用户所称 `/Documents` 在本项目中对应单数目录 `Document`,文件名使用连字符。 +- `Dataset` 当前包含 734 个文件,总大小约 20.47 GB。 +- 已建立工作流建议的 `research/` 目录结构。 +- 已对 734 个数据文件计算 SHA-256,并生成逐文件清单;清单包含重复文件分组字段。 +- 数据清单已由单纯哈希表升级为来源登记:17 个数据组均有 authority、project role、canonical analysis entry、readiness 和 license/distribution 状态;117 个重复哈希组涉及 283 个文件、166 个额外副本,潜在冗余约 0.054 GiB。当前不删除任何副本。 +- GSHS 现有说明记录主表 673,499 行、637 列、165 项调查、191 个非重叠组件;这些数字目前属于既有质量报告陈述,尚未由本轮执行重算。 +- YRBS 原始库覆盖 1991–2023;现有整理包说明 1991–2019 已生成分析表,2021/2023 仍处于导入布局验证隔离状态。 +- 系统 Python 3.13.7、Pandoc 3.11、31.82 GiB RAM 和 NVIDIA GeForce RTX 5060 Ti 16 GB 已核验;正式项目环境使用 CPython 3.12.14、PyMC 6.3.2、R 4.6.1、mirt/lavaan/survey 栈及 CUDA Toolkit 13.4.2,三套运行验收均通过。 +- 当前根目录不是 Git 仓库;版本化与审计需使用明确的文件哈希和状态档案,或后续经用户授权建立版本控制。 + +## 6. 文献初筛结论(尚待矩阵固化) + +- 已存在使用 Sentence-BERT/嵌入进行心理问卷条目匹配和相关结构预测的工作。 +- 已存在用 BERT 嵌入预测 IRT 题目参数、减少试测成本的工作。 +- 已存在把题目语义与心理问卷回答预测结合的 proof-of-concept。 +- 多组 IRT alignment、跨国 DIF、非相同题集/回答格式的测量协调及复杂抽样下的 Bayesian pseudo-posterior 均有直接相关文献。 +- 因而项目贡献不能仅表述为“首次使用 LLM 做心理测量”。候选贡献应聚焦在:官方多调查题库、跨国/跨工具连接、语义条件化的题目参数与 DIF、不确定性传播、严格外层迁移验证及复杂抽样一致性;该定位仍需系统核验。 + +## 7. 未解决问题与风险 + +| 优先级 | 问题 | 影响 | 下一处理 | +|---|---|---|---| +| P0 | 官方题目文本、回答标签、适用总体和跳题规则尚未逐项核验 | 阶段 1 和确认性分析不能启动 | 在阶段 1 建立来源可追踪题库并保留 provisional 状态 | +| P0 | 题目共现、锚定图与可识别性尚未重算 | 不能确定 IRT/层级模型是否成立 | 完成阶段 1 后进入阶段 2 审计 | +| P1 | 数据来源许可及可分发范围尚未逐来源完成最终复核 | 影响复现包与衍生数据交付 | 已在清单中显式标为 review required;阶段 1 按实际纳入来源逐项确认,不默认允许再分发 | +| P1 | R、PyMC/ArviZ、心理测量包与 CUDA Toolkit 曾缺失 | 已解决:项目 Python/R 环境和 CUDA 端到端验收通过 | 后续仅按锁定文件维护;任何升级必须重跑三套烟雾测试 | +| P1 | 文献初筛尚未形成可审计矩阵 | 研究定位和“贡献”表述仍不稳定 | 建立 literature matrix,记录 DOI、来源、证据层级和项目关系 | +| P2 | 根目录没有 Git 版本控制 | 变更追踪依赖手工哈希和档案 | 暂不擅自初始化;先维持文件哈希和行动日志 | + +## 8. 行动日志 + +### A-20260920-001:读取工作流并确定执行入口 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:定位并完整读取研究工作流,核对项目定位文件与模型说明。 +- 输入:`Document/research-workflow.md`、`Document/项目的正式定位.md`、`Document/language-conditioned-psychometric-harmonization-model.md`。 +- 输出:确定从阶段 0 开始,不直接进入模型训练。 +- 检查:工作流明确第一批需完成阶段 0–2;默认 academic-pipeline 的“已有数据→写作”路由不适用于本项目。 +- 未解决问题:阶段 0 四项交付物尚未完成。 +- 下一步:盘点数据与环境,建立阶段 0 文件。 + +### A-20260920-002:本地数据与说明文件初步盘点 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:读取 GSHS、YRBS、NSDUH/YRBS 整理包、WHO 国家背景数据及整理说明;统计文件数量和总容量。 +- 输入:各数据目录 README、变量注意事项和既有质量报告。 +- 输出:确认 734 个文件、约 20.47 GB;识别不同数据源的分析就绪状态差异。 +- 检查:未把 README/质量报告中的数字冒充本轮重算结果。 +- 未解决问题:许可、官方文本、2021/2023 YRBS 布局及设计变量仍需验证。 +- 下一步:生成全量哈希清单。 + +### A-20260920-003:生成数据文件哈希清单 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:对 `Dataset` 下全部 734 个文件计算 SHA-256、记录大小、修改时间、扩展名并标注重复哈希组。 +- 输入:`Dataset/**` 原始及衍生文件;未修改原文件。 +- 输出:`research/audit/data_manifest.csv`(734 行)。 +- 检查:清单已生成且可读取;重复哈希分组已写入。重复组的汇总统计仍需在正式审计报告中重新计算并说明口径。 +- 未解决问题:需补充 dataset group、来源、许可和分析就绪字段。 +- 下一步:扩充清单元数据并抽样复核哈希。 + +### A-20260920-004:最接近方法文献第一轮初筛 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:检索 NLP 问卷协调、文本预测 IRT 参数、多组测量不变性/DIF 和复杂抽样 Bayesian 推断相关工作。 +- 输入:同行评审论文页面、PubMed/PMC、ACL Anthology 及预印本页面。 +- 输出:形成第 6 节的初步定位结论。 +- 检查:明确区分同行评审论文与预印本;未把搜索摘要直接当作完整证据综合。 +- 未解决问题:尚需逐条核验作者、年份、DOI、研究设计、限制和与本项目的差异。 +- 下一步:建立 `literature_matrix.csv`。 + +### A-20260920-005:建立持续进度档案和项目记忆规则 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:按用户要求创建本档案,并在 `AGENTS.md` 固化每次行动前后读取/更新规则。 +- 输入:`Document/research-workflow.md`、当前项目状态及已生成产物。 +- 输出:`Progression.md`、`AGENTS.md`。 +- 检查:阶段状态、交付物、风险、已执行动作和下一步已与工作流对齐。 +- 未解决问题:无。 +- 下一步:重新读取工作流与本档案后,继续完成阶段 0 四项交付物。 + +### A-20260920-006:完成运行环境审计 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:核验操作系统、CPU、RAM、磁盘、GPU/CUDA、核心工具和 Python 科学计算/心理测量/Bayesian 包。 +- 输入:本机只读系统接口、Python distribution metadata、`nvidia-smi`、PyTorch CUDA 最小检查;工作流 SHA-256 为 `394a191359298132fc2a56304dbc49b5934f47af22d2e0fff47d28a0d9edcaeb`。 +- 输出:`research/audit/environment_audit.md`;`.learnings/ERRORS.md` 新增两条已解决的审计方法错误。 +- 检查:确认 31.82 GiB RAM、E 盘可用 256.17 GiB、RTX 5060 Ti 16 GB,且 PyTorch CUDA 可用;直接从 distribution metadata 核验包版本。 +- 未解决问题:R/Rscript、PyMC/PyTensor/ArviZ、SEM/IRT/复杂抽样栈缺失;具体嵌入模型权重和许可未冻结。 +- 后续状态:上述软件缺口已在 A-20260920-010 至 A-20260920-035 中解决;嵌入模型权重与许可仍留待阶段 5 前冻结。 +- 下一步:补齐数据清单的来源、许可和分析就绪字段,并生成重复文件摘要。 + +### A-20260920-007:完成数据来源登记与重复摘要 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:为 734 个文件补充数据组、权威来源、项目角色、候选分析入口、分析就绪状态及许可/分发状态;按 SHA-256 汇总重复文件。 +- 输入:`research/audit/data_manifest.csv` 原始哈希清单;GSHS、YRBS、NSDUH/YRBS 整理包与 WHO 国家背景数据的本地来源说明。 +- 输出:更新后的 `research/audit/data_manifest.csv`;新增 `data_source_registry.csv`、`dataset_group_summary.csv`、`duplicate_summary.csv`。 +- 检查:734 行全部匹配来源登记,未匹配数为 0;117 个重复组包含 283 个文件与 166 个额外副本,潜在冗余约 0.054 GiB。更新后 manifest SHA-256 为 `0427a19c3287a2691edbd9a4486917989fe369fcb0f729a01477ce27cd8f98f2`。 +- 未解决问题:许可状态是审计路由,不是法律授权;GSHS、NSDUH、YRBS 及外部候选在实际纳入和分发前仍须核对现行来源条款。重复文件因 provenance 和脚本引用暂不删除。 +- 下一步:完成 `research/protocol/project_charter.md`,冻结 Gate 0 的总体、构念、迁移任务、范围外事项和待验证清单。 + +### A-20260920-008:冻结阶段 0 项目章程 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:把项目定位转化为可证伪的主要研究问题,并冻结阶段 0–2 的目标总体政策、构念角色、数据角色、六类迁移任务、估计目标、识别原则、范围外事项、伦理与停止条件。 +- 输入:项目工作流、两份定位文件、数据来源登记和环境审计;输入 SHA-256 已写入章程。 +- 输出:`research/protocol/project_charter.md` v0.1.0。 +- 检查:未预设所有题目可做 IRT,未预设语义模型成功,未把学校样本外推到全部青少年;改善阈值和非劣界限留待阶段 2–3 依据审计与模拟冻结。 +- 未解决问题:共同年龄支持域、实际构念模型、主要指标数值、许可细节和正式软件环境仍按章程待验证。 +- 下一步:完成并逐条核验 `research/protocol/literature_matrix.csv`,明确最接近工作与项目贡献边界。 + +### A-20260920-009:完成聚焦文献矩阵与 Gate 0 验收 + +- 时间:2026-09-20 +- 阶段:0 +- 动作:核验预统计协调、NLP 问卷匹配、文本预测 IRT 参数、多组 alignment/DIF 和复杂抽样 Bayesian 推断的最近方法;建立逐条证据矩阵并执行 Gate 0 检查。 +- 输入:期刊/出版物原页、PubMed/PMC、ACL Anthology 和 arXiv;Deep Research 来源核验规则;Spreadsheets 结构与可视化验证规则。 +- 输出:`research/protocol/literature_matrix.csv`、`literature_matrix.xlsx`、`literature_positioning.md`。 +- 检查:13 个唯一来源 ID、必填字段缺失 0、HTTPS 来源 13/13;11 条同行评审、2 条预印本;工作簿公式错误扫描为 0,预览无明显截断或结构错误。CSV SHA-256 为 `9a43d729dbb4bf3819f71f1f373513962e4a6dc064927fc428f8f11b4e4a2a7a`。 +- 最终核对:阶段 0 四项交付物与 `Progression.md` 均存在且非空;项目章程 SHA-256 为 `adb85eea055415050b2091d8f2e5b3d7fd63c019a233430a4a55a344cbef6d0d`。 +- 结论:NLP 问卷匹配和 text-to-IRT 已有直接先例;候选贡献必须建立在官方多调查题库、严格外层迁移、语义条件化 DIF/题目参数、不确定性传播及复杂抽样一致性的组合上。该结论是聚焦定位,不是完整首创证明。 +- 未解决问题:正式论文前需扩大检索和引文追踪;许可、题目来源、共同年龄域、锚定图和模型可识别性留待阶段 1–2。 +- 下一步:在用户确认后进入阶段 1,先建立调查/组件、题目实例、回答字典、设计和来源审核的空模式及数据入口审计。 + +### A-20260920-010:核对研究环境兼容性并盘点安装入口 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:按用户授权启动研究环境补齐;重新读取工作流与进度档案,核对 NVIDIA、PyMC、R 与 PyTorch 官方安装信息,并盘点本机包管理器、Python 解释器和现有环境。 +- 输入:NVIDIA CUDA Toolkit 官方下载/归档页、PyMC 官方安装文档、R for Windows 官方页面、PyTorch 官方安装页;本机只读命令检查。 +- 输出:确定采用“系统工具 + 项目独立 Python 环境 + 项目 R 包库”的分层方案;CUDA Toolkit 目标为当前稳定版 13.4.2,PyMC 采用官方推荐的 `pymc[nutpie]`,NumPyro 作为可选后端。 +- 安装布局确认:本机 `uv` 支持通过 `--install-dir`、`--no-registry` 与项目内缓存把 Python 3.12 完整落在 `E:\Model`,并可用指定解释器创建隔离虚拟环境,无需改写系统默认 Python。 +- 检查:本机仅发现 Python 3.13;`winget.exe` 入口存在但当前执行返回“系统无法访问此文件”;R/Rscript、nvcc、conda/mamba 未发现;`uv` 可用;项目根目录不是 Git 仓库。 +- 未解决问题:需改用可访问的官方安装器或修复后的包管理入口安装 R 与 CUDA Toolkit;Python 独立环境尚未创建。 +- 下一步:通过官方安装源部署 Python 研究环境,并分别部署/验收 R、CUDA Toolkit;每批完成后立即回写本档案和环境审计。 + +### A-20260920-011:安装项目内 Python 3.12 解释器 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案后,使用 `uv` 将 CPython 下载到项目内,不注册系统解释器、不替换系统 Python。 +- 输入:官方可分发 CPython 3.12 构建;目标目录 `E:\Model\.python`,缓存目录 `E:\Model\.uv-cache`。 +- 输出:已安装 `E:\Model\.python\cpython-3.12.14-windows-x86_64-none\python.exe`。 +- 检查:下载与解释器安装成功;虚拟环境尚未建立。 +- 异常:首次创建虚拟环境时预写了 `3.12.11` 路径,但实际解析并安装的是 `3.12.14`,因此该子步骤失败;已定位真实解释器路径并写入错误日志。 +- 下一步:以实际解释器路径创建 `.venv-research`,安装并验证研究包。 + +### A-20260920-012:冻结 Python 研究栈安装清单 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,建立环境归档目录,并按工作流需要拆分数据/统计、Bayesian、心理测量、可视化和 NLP/GPU 依赖。 +- 输入:阶段 0 环境审计、PyMC 与 PyTorch 官方安装建议、SEM/心理测量技能依赖要求。 +- 输出:`research/environment/python-requirements.in`。 +- 检查:清单包含此前审计缺失的 `polars`、`duckdb`、`statsmodels`、`pymc`、`pytensor`(由 PyMC 解析)、`arviz`(由 PyMC 解析)、`semopy`、`factor-analyzer`、`pingouin`、`girth`、JAX/NumPyro 后端,以及项目后续 NLP/GPU 基线工具。 +- 未解决问题:尚待依赖解析、安装和导入/数值烟雾测试;精确版本将在安装后导出锁定。 +- 下一步:创建 `.venv-research` 并安装清单,先验收统计/Bayesian/心理测量,再验收 GPU/NLP。 + +### A-20260920-013:创建 Python 3.12 研究环境并安装依赖 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,以项目内 CPython 3.12.14 创建 `.venv-research`,解析并安装冻结输入清单。 +- 输入:`research/environment/python-requirements.in`;PyPI 与包发布者提供的 Windows wheels/sdists。 +- 输出:`.venv-research`;共安装 195 个包,包括 PyMC 6.3.2、PyTensor 3.3.2、ArviZ 1.3.0、NumPyro 0.22.0、semopy 2.3.11、factor-analyzer 0.5.1、pingouin 0.6.1、girth 0.8.0、PyTorch 2.14.0、polars 1.44.2、duckdb 1.5.5、statsmodels 0.15.0。 +- 检查:依赖解析与安装命令返回成功;`semopy` 与 `factor-analyzer` 本地 wheel 构建成功。 +- 未解决问题:安装成功不等于运行有效;需检查依赖一致性、PyMC 最小采样、SEM 拟合、IRT 导入、JAX 后端与 PyTorch GPU。特别需要核验 Torch/TorchVision/TorchAudio 的运行时兼容性。 +- 下一步:运行分层烟雾测试,修复任何兼容错误后再导出精确锁定文件。 + +### A-20260920-014:建立可重复的 Python 环境烟雾测试 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,建立单一测试入口,覆盖核心模块导入、PyMC 最小采样、semopy CFA、factor-analyzer 与 PyTorch CUDA 矩阵运算。 +- 输入:`.venv-research` 当前安装状态。 +- 输出:`research/environment/smoke_test.py`。 +- 检查:测试固定随机种子并以结构化 JSON 报告版本、通过/失败状态和异常回溯;任一必需项失败时返回非零状态。 +- 未解决问题:测试尚未执行。 +- 下一步:先运行依赖一致性检查,再执行烟雾测试并按实际失败修复。 + +### A-20260920-015:执行首轮 Python 环境烟雾测试 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案;运行 `pip check` 和结构化烟雾测试,并归档原始输出。 +- 输入:`.venv-research`、`research/environment/smoke_test.py`。 +- 输出:`research/environment/smoke-test-result.json`(首轮失败记录;包含前置警告,修复后将重写为纯 JSON)。 +- 检查:`pip check` 返回无断裂依赖;数据栈、PyMC/PyTensor/ArviZ/JAX/NumPyro、semopy、factor-analyzer、pingouin、girth、Torch/NLP 包均可导入(TabPFN 除外);semopy CFA 数值拟合通过。 +- 失败事实:PyMC/nutpie 因默认 PyTensor 缓存写入受限用户目录而失败;TabPFN 因 `skrub_data` 默认目录权限失败;factor-analyzer 0.5.1 调用已从 scikit-learn 1.9 移除的 `force_all_finite` 参数;PyTorch 为 `2.14.0+cpu`,CUDA 不可用;Matplotlib 用户缓存不可写。 +- 结论:当前环境尚未通过验收,不能标记为可用于正式分析。 +- 下一步:把所有运行缓存重定向到项目内;为 factor-analyzer 固定兼容的 scikit-learn;从 PyTorch 官方 CUDA 索引重装版本一致的 Torch 三件套,然后重跑完整测试。 + +### A-20260920-016:修订 Python 运行策略与依赖约束 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,定位 Skrub 的正式缓存环境变量并修订依赖输入与烟雾测试。 +- 输入:首轮烟雾测试回溯、已安装包源码中的缓存配置、PyTorch 官方 CUDA wheel 说明。 +- 输出:更新 `python-requirements.in`(固定 scikit-learn 1.6.1 和匹配的 Torch 三件套);更新 `smoke_test.py`;新增 `activate-research.ps1`。 +- 检查:PyTensor、Numba、Matplotlib、Skrub、Hugging Face 与 Torch 缓存均统一重定向至 `E:\Model\.cache`;测试脚本改为直接写纯 JSON,避免标准错误警告污染结果文件。 +- 未解决问题:尚需实际降级 scikit-learn、从官方 CUDA 索引重装 Torch 三件套并复测。 +- 下一步:执行版本修复与 GPU wheel 重装。 + +### A-20260920-017:修复 factor-analyzer 兼容性并核对 CUDA wheel 版本 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,将 scikit-learn 从 1.9.1 固定为 1.6.1;尝试从 PyTorch CUDA 13.0 官方索引重装 Torch 三件套,并在解析失败后直接核对官方 wheel 索引。 +- 输入:`python-requirements.in`、PyTorch 官方 cu130 的 torch/torchvision/torchaudio 索引。 +- 输出:scikit-learn 1.6.1 已安装;确认 Python 3.12/Windows 的 `torch 2.14.0+cu130` 与 `torchvision 0.29.0+cu130` 存在。 +- 异常与决定:官方 cu130 索引没有同代 `torchaudio 2.14.0`,最高列出的相关版本滞后;本项目不处理音频,故移除非必要 torchaudio,避免制造运行时不一致。 +- 检查:失败发生在依赖解析阶段,原 Torch 安装未被改写;requirements 与烟雾测试已同步移除 torchaudio。 +- 下一步:只从官方 cu130 索引重装匹配的 torch 与 torchvision,卸载旧 torchaudio,并重跑验收。 + +### A-20260920-018:安装匹配的 PyTorch CUDA 运行栈 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,卸载不匹配且非必要的 torchaudio,从 PyTorch 官方 CUDA 13.0 索引重装 Torch 2.14.0 与 TorchVision 0.29.0。 +- 输入:PyTorch 官方 `cu130` wheel 索引;Python 3.12/Windows x86_64。 +- 输出:`torch 2.14.0+cu130`、`torchvision 0.29.0+cu130`;torchaudio 已移除。 +- 检查:官方 CUDA wheel 下载约 1.9 GB;替换过程成功完成,没有改动其余研究包的版本约束。 +- 未解决问题:尚需以 `torch.cuda.is_available()`、GPU 名称和实际矩阵运算验收;完整烟雾测试还需确认缓存修复和 factor-analyzer 修复。 +- 下一步:运行第二轮完整 Python 烟雾测试与依赖检查。 + +### A-20260920-019:Python 研究环境通过第二轮运行验收 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案;运行第二轮 `pip check` 与完整烟雾测试。 +- 输入:修复后的 `.venv-research`、项目内缓存策略和 `smoke_test.py`。 +- 输出:纯 JSON 结果 `research/environment/smoke-test-result.json`。 +- 检查:依赖检查无断裂;所有 25 个目标模块导入通过;PyMC 6.3.2 使用 nutpie 完成 1 链 50 tune + 50 draws 的最小采样;semopy CFA 与 factor-analyzer 拟合通过;TabPFN 9.0.0 导入通过;Torch 2.14.0+cu130 在 NVIDIA GeForce RTX 5060 Ti 上完成有限值矩阵乘法,`torch.cuda.is_available()` 为真。 +- 限制:烟雾测试的 50 draws 只用于验证运行能力,不构成统计诊断;`g++ not available` 是可选编译器探测提示,nutpie 实际采样已成功;factor-analyzer 使用 scikit-learn 1.6 的弃用兼容层,故必须保持版本锁定。 +- 结论:Python 统计/Bayesian/心理测量/GPU 环境通过当前阶段运行验收。 +- 下一步:导出精确 Python 锁定清单;安装并验收 R/CRAN 栈与 CUDA Toolkit/nvcc。 + +### A-20260920-020:安装并验证项目内 R 4.6.1 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,从 CRAN 官方站点下载 R 4.6.1 Windows x64 安装器,并静默安装到项目工具目录。 +- 输入:`https://cran.r-project.org/bin/windows/base/R-4.6.1-win.exe`。 +- 输出:`E:\Model\.tools\R-4.6.1`;安装器 SHA-256 为 `C5424C40CD70EF85765A55D2FF96BB602B5F30ED536938FF004F14DB5DB3C2DF`。 +- 检查:`Rscript (R) version 4.6.1 (2026-06-24)`、UCRT、x64;基础启动成功。 +- 异常:静默安装器首次返回时立即调用 Rscript 命中短暂落盘竞态,随后只读检查确认安装完整并复测通过;另发现当前 shell 的 `C.UTF-8` locale 设置在 Windows R 中产生警告,需在项目启动脚本中清理/修正。 +- 未解决问题:CRAN 研究包尚未安装;项目 R 库与运行测试尚未建立。 +- 下一步:创建项目专属 R library,安装 survey/srvyr、mirt、lavaan/semTools/psych、数据处理与复现包并执行烟雾测试。 + +### A-20260920-021:冻结 R 包清单与运行验收协议 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,识别 Windows R locale 覆盖来源,建立项目 R 包安装脚本和数值烟雾测试。 +- 输入:工作流对复杂抽样、IRT/SEM、数据处理和复现性的要求;当前 shell 的 `LANG/LC_ALL/LC_CTYPE=C.UTF-8`。 +- 输出:`install-r-packages.R`、`r-smoke-test.R`;更新 `activate-research.ps1`,加入 R_HOME、R_LIBS_USER、PATH 与 Windows locale 清理。 +- 检查:包契约包括 survey/srvyr、mirt、lavaan/semTools/psych、Arrow/Haven/tidyverse 核心、renv/targets;测试覆盖加权均值、lavaan CFA、mirt 2PL 与 Parquet 往返。 +- 可复现性修订:两个 R 脚本均从 `Rscript` 的 `--file=` 参数解析自身路径,不依赖当前工作目录或交互式调用栈。 +- 未解决问题:CRAN 包尚未实际安装和运行。 +- 下一步:安装项目 R library,导出版本并运行完整烟雾测试。 + +### A-20260920-022:安装并核对项目 R 研究包 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,从 CRAN 官方镜像安装项目 R 包及必需依赖到 `.r-library/4.6`。 +- 输入:`install-r-packages.R`;CRAN Windows 4.6 二进制仓库。 +- 输出:项目 R library;`research/environment/r-package-versions.json`。 +- 检查:19 个顶层包全部安装并经 `packageVersion()` 核对,包括 survey 4.5、srvyr 1.3.1、mirt 1.47、lavaan 0.7-2、semTools 0.5-9、psych 2.6.5、arrow 25.0.1、renv 1.2.4、targets 1.12.0;安装命令返回成功。 +- 未解决问题:包存在性已验证,但加权估计、CFA、2PL 和 Parquet 读写尚待运行测试。 +- 下一步:执行 `r-smoke-test.R` 并根据实际运行结果修复。 + +### A-20260920-023:执行首轮 R 运行验收并发现判定漏洞 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,运行 R 包导入、复杂抽样加权均值、lavaan CFA、mirt 2PL 和 Arrow/Parquet 往返测试。 +- 输入:项目 R 4.6.1 与 `.r-library/4.6`。 +- 输出:`research/environment/r-smoke-test-result.json`(首轮结果,保留审计痕迹,下一轮将覆盖为最终结果)。 +- 检查:19/19 顶层包导入通过;survey 加权均值、lavaan CFA 和 Arrow 往返通过;无 locale 警告。 +- 失败事实:mirt 在独立随机 Bernoulli 数据上 500 次 EM 后未收敛;更重要的是,测试脚本仅记录 `converged=false` 却仍把该项标为 passed,属于验收逻辑错误。 +- 修复:改用已知一维 2PL 生成机制模拟 500×8 响应矩阵;把未收敛显式提升为测试失败;最大 EM 周期设为 1000。 +- 结论:R 环境尚不能在修复后复测前标记为最终通过。 +- 下一步:重跑 R 烟雾测试,必须同时满足过程成功和 `mirt@OptimInfo$converged=true`。 + +### A-20260920-024:R 研究环境通过第二轮运行验收 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,执行修复后的完整 R 烟雾测试。 +- 输入:R 4.6.1、项目 library、已知一维 2PL 模拟数据生成器。 +- 输出:最终 `research/environment/r-smoke-test-result.json`。 +- 检查:19/19 顶层包导入通过;survey 加权均值为有限值;lavaan CFA 明确收敛;mirt 2PL 在 500 名模拟受访者、8 个题目上明确收敛;Arrow Parquet 写入后读回 3×2 数据;命令返回成功且无 locale 警告。 +- 结论:R 复杂抽样、IRT/SEM 和列式数据交换环境通过当前阶段运行验收。 +- 下一步:安装 CUDA Toolkit/nvcc;随后导出 Python/R 锁定清单并更新环境审计。 + +### A-20260920-025:解析并冻结 CUDA Toolkit 官方安装源 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,从 NVIDIA 官方动态下载页解析 Windows x86_64 的 CUDA 13.4.2 安装器 URL、大小和校验和,并核对 Windows 安装指南。 +- 输入:NVIDIA CUDA Toolkit 13.4.2 下载页与 Microsoft Windows 安装指南。 +- 输出:网络安装器 `cuda_13.4.2_windows_x86_64_network.exe`;官方 URL 固定为 `https://developer.download.nvidia.com/compute/cuda/13.4.2/network_installers/cuda_13.4.2_windows_x86_64_network.exe`;大小 10,460,392 bytes;MD5 `a0810494c821437671d6e68e66f59daf`。 +- 检查:官方文档确认 CUDA 13.1 起 Windows Toolkit 不再捆绑 GPU 驱动,故安装 Toolkit 不应替换现有驱动。 +- 未解决问题:安装器尚未下载/校验/执行;nvcc 尚未验收。 +- 下一步:下载并核对 MD5,静默安装 Toolkit,验证 nvcc 版本、目录和 PyTorch GPU 回归。 + +### A-20260920-026:安装 CUDA Toolkit 13.4.2 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,下载 NVIDIA CUDA 13.4.2 Windows x86_64 网络安装器,校验后执行完整静默安装;安装期间通过进程 CPU 和组件展开目录做只读健康检查。 +- 输入:A-20260920-025 冻结的 NVIDIA 官方安装器。 +- 输出:系统级 CUDA Toolkit 13.4.2;安装器保存在 `.downloads/cuda_13.4.2_windows_x86_64_network.exe`。 +- 检查:下载文件 MD5 与官方值 `a0810494c821437671d6e68e66f59daf` 完全一致;安装器最终退出码为 0;期间观察到 cudart、cuSPARSE、cuSOLVER、NPP 等 13.4 组件展开,未启动第二安装实例。 +- 未解决问题:需独立验证最终 nvcc、环境变量和 PyTorch GPU 回归;Windows C++ host compiler 状态尚未检查。 +- 下一步:执行 Toolkit 与 GPU 回归验收,并判断是否需要补充 MSVC Build Tools。 + +### A-20260920-027:完成 CUDA Toolkit 基础与 GPU 回归验收 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,独立核验 Toolkit 目录、nvcc、NVIDIA 驱动、PyTorch GPU 运算和 Windows C++ host compiler。 +- 输入:系统级 CUDA 13.4.2、现有 NVIDIA 驱动、项目 Python GPU 环境。 +- 输出:CUDA 根目录 `C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.4`。 +- 检查:`nvcc` 报告 release 13.4 / V13.4.92;GPU 为 NVIDIA GeForce RTX 5060 Ti、驱动 596.36、显存 16,311 MiB;PyTorch 2.14.0+cu130 使用 CUDA runtime 13.0 完成 GPU 矩阵运算且结果有限;Visual Studio 2022 Community C++ 工具链已发现,无需另装 Build Tools。 +- 未解决问题:尚需用 nvcc 和 MSVC 编译并运行最小 CUDA 程序,完成端到端 Toolkit 验收。 +- 验收准备:新增 `research/environment/cuda-smoke.cu`,以单线程 kernel 将 41 增为 42;项目启动脚本已加入 CUDA_PATH 与 Toolkit `bin`。 +- 下一步:编译/运行 CUDA smoke test;随后锁定环境与更新审计。 + +### A-20260920-028:确认 GPU 架构并修正 CUDA 编译调用 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,查询 GPU compute capability,并首次尝试以 Visual Studio 开发环境调用 nvcc。 +- 输入:`cuda-smoke.cu`、Visual Studio 2022 Community、CUDA 13.4 nvcc。 +- 输出:确认 RTX 5060 Ti compute capability 为 `(12, 0)`,编译目标应为 `sm_120`。 +- 异常:嵌套 `cmd.exe` 命令对带空格的 `VsDevCmd.bat` 路径引号处理失败,编译器未实际启动,未生成或执行二进制。 +- 修复方案:先从 `VsDevCmd.bat && set` 捕获开发环境变量并导入当前 PowerShell 进程,再直接调用 nvcc,避免多层命令字符串。 +- 下一步:按修复方案重新编译并运行 smoke test。 + +### A-20260920-029:精确核验 MSVC 并统一 CUDA 构建 shell + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案;第二次编译已到达 nvcc,但导入 PowerShell 的 VS 环境未让 nvcc 找到 `cl.exe`;随后用 vswhere 精确核验 C++ 组件与编译器文件。 +- 输入:Visual Studio Installer `vswhere.exe`、CUDA smoke 源码。 +- 输出:确认 MSVC `cl.exe` 位于 `VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe`;新增 `cuda-smoke-build.cmd`。 +- 异常:跨进程导入 VsDevCmd 环境未满足 nvcc 的 host compiler 查找,报 `Cannot find compiler 'cl.exe' in PATH`。 +- 修复:让 `vcvars64.bat`、nvcc 和测试程序在同一个 cmd 进程内顺序运行,避免跨 shell 环境复制。 +- 下一步:运行统一构建脚本并验收结果 42。 + +### A-20260920-030:CUDA Toolkit 端到端验收通过 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,在同一 cmd 环境中加载 MSVC、以 nvcc `-arch=sm_120` 编译最小 CUDA kernel,并在 GPU 上运行。 +- 输入:`cuda-smoke.cu`、`cuda-smoke-build.cmd`、MSVC 14.44、CUDA 13.4.92、RTX 5060 Ti。 +- 输出:`research/environment/cuda-smoke.exe`(可重建测试产物)。 +- 检查:编译和链接成功,运行输出 `cuda_smoke_result=42`,进程退出码 0;证明 nvcc、MSVC host compiler、CUDA runtime 与 GPU 的完整链路可用。 +- 警告处理:MSVC 在中文代码页下对 NVIDIA 头文件产生 C4819 编码警告,不影响构建或运行;构建脚本已加 `/wd4819` 仅屏蔽该第三方头文件警告。 +- 结论:CUDA Toolkit 13.4.2 通过当前阶段验收。 +- 下一步:导出 Python/R 精确依赖清单、环境哈希和使用说明,更新 `environment_audit.md` 与本档案的风险状态。 + +### A-20260920-031:首次环境锁定失败并修正缓存路径 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,尝试导出 Python freeze、renv.lock、R 全包表与 session info。 +- 输入:已通过验收的 Python/R 环境。 +- 失败事实:`uv` 默认缓存 `C:\Users\Jino\AppData\Local\uv\cache` 和 renv 默认缓存 `C:\Users\Jino\AppData\Local/R/cache/R/renv` 均不可写;锁文件未生成。 +- 修复:启动脚本新增 `UV_CACHE_DIR=E:\Model\.uv-cache` 与 `RENV_PATHS_ROOT=E:\Model\.cache\renv`;下一次锁定命令也将显式设置两者。 +- 下一步:重跑全部锁定导出,并只在四个目标文件均存在后计算哈希。 + +### A-20260920-032:第二次锁定生成核心文件但全包表导出失败 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,使用项目缓存重跑 Python freeze 和 renv snapshot。 +- 输出:已生成 `python-requirements.lock.txt` 与 `renv.lock`;renv 记录 R 4.6.1 和项目 CRAN 包。 +- 异常:R 全包表固定索引 `Repository` 列,但本机 `installed.packages()` 结果没有该列,触发 `subscript out of bounds`;同时 renv 只收到项目库路径,因而把 R 自带推荐包(MASS、Matrix、survey 依赖等)误报为缺失。 +- 修复方案:向 renv 同时传入项目 library 与 `.Library`,全包 CSV 仅选择实际存在的列;重新生成所有 R 锁定辅助文件并统一核验。 +- 结论:已有锁文件视为中间产物,尚未完成最终验收。 +- 下一步:按修复方案重跑 R snapshot/导出并计算全部哈希。 + +### A-20260920-033:完成 Python/R 环境锁定与哈希核验 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,以项目缓存和完整 R library 搜索路径重跑锁定导出;逐文件检查存在性并计算 SHA-256。 +- 输出:`python-requirements.lock.txt`(195 包)、`renv.lock`(119 包)、`r-installed-packages.csv`(134 行)、`r-session-info.txt`,以及现有 Python/R 测试 JSON。 +- 检查:七个要求产物均存在且非空;哈希已取得,将写入正式环境审计。 +- 异常:一次 PowerShell 表格序列化只显示占位列,随后改用纯文本逐行输出,成功取得完整哈希;文件本身未受影响。 +- 下一步:更新环境审计、使用说明与进度风险状态。 + +### A-20260920-034:正式环境审计替换补丁被工具拒绝 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:尝试在单一补丁中删除并重新新增 `environment_audit.md`,同时创建 README 和更新进度状态。 +- 结果:补丁工具拒绝同一文件的多重操作;未修改任何目标文件。 +- 修复方案:将审计文件替换拆成独立删除与新增步骤,再单独添加 README 和进度变更。 +- 下一步:按拆分方案完成文档收尾并复核。 + +### A-20260920-035:完成环境补强文档收口与最终一致性复核 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:重新读取工作流与进度档案,更新正式环境审计与使用说明,复核锁文件、测试 JSON、依赖一致性和 CUDA 可重建性,并清理当前状态中的旧阻断措辞。 +- 输出:更新 `research/audit/environment_audit.md`;新增 `research/environment/README.md`;更新本档案至 v1.2。 +- 检查:8 个要求产物均存在且非空;Python 测试失败数 0,R 测试失败数 0,mirt `converged=true`;`pip check` 无断裂依赖;CUDA 重新编译运行输出 42;环境审计记录七项 SHA-256。 +- 工具异常:README/进度联合补丁因补丁区块顺序与文件行序不一致而被整体拒绝一次;拆分并按行序重排后成功,未丢失内容。 +- 结论:用户要求的 R、CUDA Toolkit 与缺失 Python/R 研究包已安装、验证、锁定并归档。阶段 0 环境风险解除。 +- 未解决问题:具体嵌入模型权重和许可尚未冻结;这是阶段 5 前的研究治理任务,不是环境安装缺陷。 +- 下一步:进入阶段 1,建立有来源证据的题库与回答层。 + +### A-20260920-036:最终交付完整性确认 + +- 时间:2026-09-20 +- 阶段:0(环境补强) +- 动作:按强制规则重新读取工作流与进度档案,逐项检查环境审计、使用说明、输入/锁定文件、Python/R 测试结果和 CUDA 构建脚本。 +- 检查:8 个核心交付文件全部存在且非空;进度版本为 1.2,当前阶段与下一行动表述一致;正式环境审计明确标记 `passed` 并记录 CPython 3.12.14、R 4.6.1、CUDA Toolkit 13.4.2 和 CUDA 结果 42。 +- 结论:本次工具补强请求完成,无待安装的工作流关键环境依赖。 +- 下一步:阶段 1 题库与回答层。 + +### A-20260920-037:审计 Git 初始化条件 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:按强制规则读取工作流、进度档案与 `AGENTS.md`,核对项目根目录、Git 用户身份和远程配置。 +- 输入:`E:\Model` 根目录、全局 Git 配置。 +- 检查:当前尚无 Git 仓库;全局提交身份已配置为 `Jinotech `;未发现可用远程地址。 +- 决定:以 `main` 初始化本地仓库;排除 Dataset、解释器、虚拟环境、R library、安装器和缓存,纳入研究代码、协议、审计、锁文件与进度档案。 +- 推送状态:`push_pending`;原因是尚无远程 URL,不影响本地初始化和首个提交。 +- 下一步:建立 `.gitignore`,把逐行动提交/推送协议写入 `AGENTS.md`,初始化并审计暂存范围。 + +### A-20260920-038:核对首个 Git 提交的目录规模 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流与进度档案,递归统计顶层目录文件数与容量。 +- 检查:`Dataset` 约 19.06 GiB;`.uv-cache` 约 4.76 GiB;`.venv-research` 约 4.39 GiB;`.r-library` 约 0.23 GiB;`.tools` 约 0.19 GiB;`.downloads` 约 0.10 GiB,均不应进入 Git。`LLM-based Agent构建` 约 0.33 GiB,需检查其大文件后再决定细粒度忽略。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:检查 `LLM-based Agent构建` 最大文件,随后冻结 `.gitignore`。 + +### A-20260920-039:审计本地 LLM 文献归档的大文件 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流与进度档案,检查 `LLM-based Agent构建` 的最大文件。 +- 检查:该目录约 0.33 GiB,主要为 72 个本地 PDF 文献副本;单文件最大约 26.70 MiB。当前心理测量项目已有可审计的文献矩阵与来源链接,不需要把这批相邻主题 PDF 二进制纳入首个仓库。 +- 决定:将整个 `LLM-based Agent构建/` 作为本地参考归档排除,避免无必要地膨胀远程历史;不删除原文件。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:创建 `.gitignore` 并更新 `AGENTS.md` 的 Git 提交/推送协议。 + +### A-20260920-040:冻结版本化边界与逐行动 Git 协议 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流与进度档案,创建根目录 `.gitignore`,并在 Codex 实际识别的 `AGENTS.md` 中加入强制 Git 协议。 +- 输出:`.gitignore`;更新 `AGENTS.md`。 +- 检查:规则要求每项推进在验证和更新进度后形成独立提交;已配置远程时立即 push;无远程或推送失败时必须记录 `push_pending/push_failed`,不得虚报。原始数据、环境、安装器、缓存、模型权重和可重建二进制明确排除。 +- 说明:用户口述的 `AGENT.md` 对应本项目已存在且被 Codex 识别的 `AGENTS.md`,故更新现有文件而不建立冲突的第二份规则文件。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:初始化 `main` 仓库,检查忽略结果与待提交文件大小,然后创建首个提交。 + +### A-20260920-041:初始化 Git 仓库并遇到安全所有权检查 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流与进度档案,在 `E:\Model` 初始化 `main` 分支仓库并尝试读取状态/忽略规则。 +- 输出:`E:\Model\.git`,空仓库初始化成功。 +- 异常:Git 检测到目录所有者为 Windows Administrators、当前受控账户为 CodexSandboxOffline,因 `dubious ownership` 拒绝状态读取。 +- 修复方案:仅将精确项目路径 `E:/Model` 加入全局 `safe.directory`,不使用通配符或关闭全局安全检查。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:应用精确安全例外并重新审计忽略范围。 + +### A-20260920-042:应用精确 Git 安全例外并验证忽略边界 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流与进度档案,将 `E:/Model` 精确加入全局 `safe.directory`,重新读取仓库状态并逐项检查忽略命中。 +- 检查:Git 状态可正常读取;候选顶层仅有 `.gitignore`、`.learnings/`、`AGENTS.md`、`Document/`、`Progression.md` 和 `research/`。Dataset、Python/R 环境、工具安装目录、下载、缓存、本地 PDF 归档及 CUDA 可执行文件均由预期规则排除。 +- 安全边界:未使用 `safe.directory=*`,只放行当前仓库绝对路径。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:审计候选文件数量、总容量和最大文件,确认后暂存首个提交。 + +### A-20260920-043:发现并排除嵌套 node_modules + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流、进度档案和 Git 状态,统计未跟踪候选文件及最大文件。 +- 检查:初始候选为 7,832 个文件、约 320.92 MiB;最大文件均位于 `research/experiments/node_modules`,属于可重建工具依赖。 +- 修复:`.gitignore` 新增 `**/node_modules/`,保留实验目录中的源文件和配置但排除依赖树。 +- 附带警告:Git 无法读取用户级 `C:\Users\Jino\.config\git\ignore`,不影响项目级 ignore;不为此扩大文件系统权限。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:重新审计候选规模,确认后暂存。 + +### A-20260920-044:确认首个提交候选集安全且轻量 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流、进度档案与 Git 状态,应用新 ignore 后重新统计全部候选路径。 +- 检查:候选集降至 36 个文件、约 1.25 MiB;最大单文件约 0.32 MiB。候选仅包含规则/进度、项目说明、研究协议与审计、环境脚本/锁文件/测试结果、文献矩阵及其生成脚本;没有原始数据、环境目录、node_modules、安装器、模型权重或可执行文件。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:暂存 36 个候选文件,检查 staged diff/stat 后创建首个提交。 + +### A-20260920-045:首次暂存因 `.git` 写权限受限而失败 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流、进度档案与 Git 状态,尝试暂存全部已审计候选并查看 staged diff。 +- 结果:`git add` 无法创建 `.git/index.lock`,没有文件进入暂存区;工作树内容未变。 +- 修复方案:以用户已授权的仓库写操作权限重试;Git 命令显式设置 `core.excludesFile=NUL`,避免不可读用户级 ignore 警告,同时继续使用项目 `.gitignore`。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:提升仅 Git 索引写入所需权限,重新暂存和核对。 + +### A-20260920-046:无效 excludesFile 覆盖导致第二次暂存前退出 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:在获准的 Git 索引写权限下重试暂存,并尝试用 `core.excludesFile=NUL` 消除不可读用户级 ignore 警告。 +- 结果:Git for Windows 报 `cannot use NUL as an exclude file`,在写索引前退出;暂存区仍为空。 +- 修复:移除非必要的 excludesFile 覆盖,接受不影响项目 `.gitignore` 的用户级警告,直接执行已授权的 `git add -A`。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:无覆盖地暂存并核对 staged 范围。 + +### A-20260920-047:暂存并核对首个仓库快照 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:重新读取工作流、进度档案与 Git 状态,在获准的仓库元数据写权限下暂存全部已审计候选,并检查 staged stat 与逐文件状态。 +- 检查:36 个文件全部为新增;约 9,150 行;仅含两个小型二进制研究产物(10 KiB 工作簿、约 328 KiB 预览图);暂存清单与 A-20260920-044 的边界一致。 +- 警告:Git 提示部分 LF 文件未来可能按 Windows 配置转为 CRLF;当前内容与暂存均成功,不作为阻断。 +- 推送状态:`push_pending`,远程仍未配置。 +- 下一步:把本条记录重新暂存,创建首个提交并验证 HEAD/工作树/远程状态。 + +### A-20260920-048:准备创建首个可复现仓库提交 + +- 时间:2026-09-20 +- 阶段:项目治理 +- 动作:将以非交互式提交 `chore(repo): initialize reproducible research workspace` 固化工作流、项目记忆、阶段 0 产物、环境锁与 Git 治理规则。 +- 完成条件:提交命令成功、HEAD 可解析、提交后工作树无意外未提交文件。 +- 推送状态:`push_pending`;没有远程 URL,无法执行真实 `git push`,不得声称已推送。 +- 下一步:创建并验证提交;待用户提供远程 URL 后设置 `origin` 并推送 `main`。 + +## 9. 下一行动 + +下一次行动开始前重新读取 `Document/research-workflow.md` 与本文件。随后: + +环境补强已经完成。下一行动进入阶段 1: + +1. 冻结阶段 1 数据实体 schema 与审核状态枚举; +2. 只读核验 GSHS、YRBS、NSDUH 候选入口的实际结构、行列数和设计字段; +3. 建立主要结局的来源登记骨架,所有未完成实际双重核查的条目标为 `provisional`。 diff --git a/research/audit/data_manifest.csv b/research/audit/data_manifest.csv new file mode 100644 index 0000000..7686d6f --- /dev/null +++ b/research/audit/data_manifest.csv @@ -0,0 +1,735 @@ +"relative_path","dataset_group","authority","source_url","project_role","canonical_analysis_entry","readiness","license_distribution_status","bytes","last_write_utc","sha256","duplicate_group","extension" +"Dataset\_organized\duplicate_audit.md","organization metadata","local project organization","","project metadata","none","documentation_only","not_applicable","1136","2026-09-14T21:42:47.6617710Z","dbe896cfe78f9fe30635c0d350fb495b690d01110949afd2dd2668da27fefa93","",".md" +"Dataset\_organized\external_candidates\Global_Mind_Project\gmp_data_20200101-20221231.csv","Global Mind external candidate","Sapien Labs / Global Mind Project","","external candidate","none","hold","unknown_review_required","720368137","2026-09-03T15:24:22.3074481Z","61c02bbb05cb90a541c10306602a88043edd0781fd8209223c002a3893131e31","",".csv" +"Dataset\_organized\external_candidates\Global_Mind_Project\gmp_data_20230101-20241231.csv","Global Mind external candidate","Sapien Labs / Global Mind Project","","external candidate","none","hold","unknown_review_required","935136716","2026-09-03T15:24:17.6497186Z","65f7148b685f9eabd45ac83c53e2bc6af6d1955426309d0c4dd2ed21cedaa315","",".csv" +"Dataset\_organized\external_candidates\Global_Mind_Project\README_ Information on the Global Mind data on Brainbase.docx","Global Mind external candidate","Sapien Labs / Global Mind Project","","external candidate","none","hold","unknown_review_required","512023","2026-09-03T15:22:45.9050221Z","bc0a278ec4683e67b7fa41ad378efd6ef502eefa78418e6813baa00a6cdc1045","",".docx" +"Dataset\_organized\README.md","organization metadata","local project organization","","project metadata","none","documentation_only","not_applicable","1153","2026-09-19T13:21:12.5860663Z","7886b255d9a5cba2d042306f8c99e91c702dcafbcd97950497511edd76d34297","",".md" +"Dataset\可直接分析数据包_NSDUH_YRBS.zip","NSDUH/YRBS processed delivery archive","local archive of processed delivery","","provenance archive","none","archive_only","inherits_upstream_terms","138448123","2026-09-05T05:40:04.3487024Z","3d1f27934ef6c09bd0acda0775c317efca4893a251e4b400f59e627eb94dc212","",".zip" +"Dataset\可直接分析数据包_NSDUH_YRBS\harmonization\construct_crosswalk.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","523190","2026-09-05T05:32:31.9198945Z","81568508179e393f441cf4b009fb9e1048a866b74e72ae3a616d7da3e53cb60f","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\harmonization\missing_value_rules.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","608","2026-09-05T05:32:31.9218882Z","390569dd45e5532a4701da3d80e0569d8289ff384a2099418c28b203e25af483","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\manifest.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","3658","2026-09-05T05:32:32.1747893Z","18629ba43b320647e8fe790a053049521a5a3c1aca1844e647e08ad93a2c76ce","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","90527632","2026-09-05T05:32:11.0380288Z","f8cc9e89df9d2d51e83018de15baa204d141d87a995dd3cd8a6d34b398e3215a","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_selected.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","154982395","2026-09-05T05:32:22.1422702Z","dc513540ba3ce67da71692168a42a4b0f413aaefd0fb98be368ea122910f9acc","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_selected.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","14550549","2026-09-05T05:32:12.5956964Z","e022c62875693dc4e298c707912acc70786f3057de4fc6aace631a12a3511b4d","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_complete_value_labels.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","7467543","2026-09-05T05:32:11.6863658Z","ec2128f9e6ca7ac464327fece34deee13fd3e1140b463a2547a8970efe099ff6","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_complete_variable_dictionary.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","3223479","2026-09-05T05:32:11.5260999Z","fede9dc493b97fc11c6ab8569cee83c26458355f2502bc9ca880d167a423e421","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_selected_variable_dictionary.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","982133","2026-09-05T05:32:22.1522368Z","c5df4c189da3b2db4825486a8449c063b6f72d03f3bd0c45653fe55b55ba2528","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_year_coverage.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","151","2026-09-05T05:32:22.1622008Z","9b49479ed7ddbdf7a5e7082d764c3b87c24a34f77c9f9c4dc11ed5cf32687d86","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\quality_checks.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","432","2026-09-05T05:32:33.0699836Z","738b20d3d5651981dc2ad17aee850d9830859839be182567f3e47ec4ba9dc4aa","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\README.md","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","1343","2026-09-05T05:32:32.1757813Z","3be48f4b22610ea595333796530b40e856988a3c367e3591bb43d39d43cbcc3f","",".md" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_1991_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","312225","2026-09-05T05:32:22.6219188Z","f9ab259ce530ec1048ffa4e4b33cbea0ef6561a1f3ab1e115d3a1a5a65e81618","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_1993_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","442427","2026-09-05T05:32:22.9097784Z","46a85bd681cc85774596463e6de819483e8a3cd661f281e43e794603809bf9e3","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_1995_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","324527","2026-09-05T05:32:23.1176304Z","4438a5a8fac26db1026be41621d80203d6218adfd902e325b12145c6ec36a096","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_1997_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","434933","2026-09-05T05:32:23.4166266Z","351243e9a2d573a4359aab992f4c0fef9f07b7936646492f6333858181c28787","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_1999_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","436617","2026-09-05T05:32:23.7071265Z","3995a17cd2a0340d45c8ea08adf57a7ea49a017adb12b6790d1377cd77a81098","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2001_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","401046","2026-09-05T05:32:23.9734203Z","7cf223dbcd23974d9177628e997c14e9b8556301083185098d7862648e8bffc0","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2003_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","692155","2026-09-05T05:32:24.5321581Z","742aa339418d6d83b5e39ed5ed57fdcabd01db198a92d782350f2fa80a2e48ac","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2005_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","669072","2026-09-05T05:32:25.0713739Z","9bad08a1c1fb2ce3b2da69899ccfb2b7ac97b22bbf699ab582464025cec598e4","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2007_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","651301","2026-09-05T05:32:25.5806676Z","60a97c0376d52ee66980365bdfc213ac4fd46e966ce34ffa8c98021dcb651e66","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2009_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","776055","2026-09-05T05:32:26.2097517Z","539087afecae7bd2e29949fbbba3189a59a847a03a488f927ca7956844a27b2f","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2011_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","749228","2026-09-05T05:32:26.7941000Z","b7a74ebb2e4ee903df87da859ed20de017d424fd47868e81af06260e91d2dc04","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2013_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","722498","2026-09-05T05:32:27.3323357Z","1cce5b9d538aae5fc0a0fe8274e654e9e6073273e9c76cc9790ade54cf43290e","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2015_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","873670","2026-09-05T05:32:28.0348395Z","cd579156a1d1c84fce196dea0c3e0a0e9dfc84ac82d24cb8354bd88114b330cc","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2017_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","986498","2026-09-05T05:32:28.8816246Z","cef2974b80738f8143a516eacfbc4ee653738600ba6bf51eaae97e2b7ba23a08","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year\yrbs_2019_full.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","914204","2026-09-05T05:32:29.6858861Z","eeb6aecf1477d6b36965099d390abb096bdf5993653a96933518e614069c1ace","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\yrbs_1991_2019_complete_layout_dictionary.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","543783","2026-09-05T05:32:31.7994347Z","1293e3952f07372680d8f88a8376810b02cbb9e23ec563922b4a290c2aaffde3","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\yrbs_1991_2019_selected.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","31075432","2026-09-05T05:32:31.7864781Z","7c7be136d780ba3044b4948aa8bd219f13b6849e0531f8768dfee075dffb0566","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\yrbs_1991_2019_selected.parquet","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","2576853","2026-09-05T05:32:30.1666815Z","98e5359aa020cf67bb2b891cb4a5a48e6eed4e1f885fd3dd27adadc09c451f65","",".parquet" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\yrbs_parse_inventory.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","3652","2026-09-05T05:32:31.8881388Z","4e3f2dd55e5657da8537222465a70eb26e07733054d83222db260c432c323d8f","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\yrbs_selected_value_labels.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","390340","2026-09-05T05:32:31.8861448Z","79dc918276d052949937669b383d9924ea97c5934f568f4cabcc6736278a08ca","",".csv" +"Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\yrbs_selected_variable_dictionary.csv","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","895792","2026-09-09T18:18:04.1108056Z","15b7784c466ee4f7c43dffa2f6cf0d90190cd9921fde0e39f41f18ac9bcd65ca","",".csv" +"Dataset\ABES_2021\source_archive\2021_ABES_Data_Users_Guide.pdf","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","3677012","2026-09-16T09:38:27.1460772Z","e8825645d14e1a5efe3be792bee1e0f99252757b983540c7833a627a3155ddb3","",".pdf" +"Dataset\ABES_2021\source_archive\2021ABEH-Formats-Program.sas","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","19855","2026-09-16T09:38:19.9555324Z","89f0dd2adaf6a8554ac4a112f835dee06477fcaf58fbd700e0d2c125abdd803d","",".sas" +"Dataset\ABES_2021\source_archive\2021ABEH-SAS-Input-Program-w-5-recruit-variables.sas","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","20486","2026-09-16T09:38:21.5885585Z","160daffd04f818467f2d90d5c123fe7a9af054116bc0ff2552e28cf96e4fd613","",".sas" +"Dataset\ABES_2021\source_archive\2021ABEH-SPSS.sps","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","33660","2026-09-16T09:38:23.6561870Z","d4d3e8285a7655262b1c722afdaa254f74d2a325ff85498a162ce5ffbf9dfff9","",".sps" +"Dataset\ABES_2021\source_archive\ABEH2021_5_RECRUIT.dat","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","3374790","2026-09-16T09:38:18.1716514Z","b918f0484eb7fed948c19fe7cbabb6919f311c7ae60253c38b25f7c932a1c5cf","",".dat" +"Dataset\ABES_2021\source_archive\ABES_Questionnaire.pdf","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","127438","2026-09-16T09:38:28.7971096Z","1fcf198cae5bf557d13fd7b03b91c08605f44bdccdae92985f6bea9a68678fc6","",".pdf" +"Dataset\ABES_2021\source_archive\ABES-Spanish.pdf","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","138449","2026-09-16T09:38:30.4056217Z","da6fa3869bbdef4b9e112f83a3757ea92eb106be264e7638e2d3be702f5d93b2","",".pdf" +"Dataset\GSHS_Public_Aux\Ghana_GSHPPS_2023\GHA-Sek-Tak-2022.csv","GSHS public auxiliary","WHO GSHS public documentation","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","documentation candidate","none","documentation_only","review_current_source_terms","27405","2026-09-18T08:58:28.3380716Z","ed2bb12f73c827ed24aadf5e64dacbc74c7164d99b279d4aae275a2a7f8ee5aa","",".csv" +"Dataset\GSHS_Public_Aux\India_GSHPPS_2022\IND-Jaipur-2022.csv","GSHS public auxiliary","WHO GSHS public documentation","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","documentation candidate","none","documentation_only","review_current_source_terms","209374","2026-09-18T09:12:00.0881840Z","5146f9d4e3dd3da78c9a0b0cf3afe2bcfa72f3e288e69d1b3fb4c436faafc56f","",".csv" +"Dataset\GSHS_Public_Aux\Jamaica_GSHPPS_2023\JAM-St-Catherine-2023.csv","GSHS public auxiliary","WHO GSHS public documentation","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","documentation candidate","none","documentation_only","review_current_source_terms","15521","2026-09-18T09:12:40.3582068Z","3427a67e8c56ebbf3ec7652f5f0bed02483445ff7bd50ea1fcb9e99dbd4887b0","",".csv" +"Dataset\GSHS_Public_Aux\Morocco_GSHPPS_2023\MAR-Fez-2023.csv","GSHS public auxiliary","WHO GSHS public documentation","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","documentation candidate","none","documentation_only","review_current_source_terms","25747","2026-09-18T09:11:35.5220602Z","60b21010ade8b951f33abe918130706b048f3a146cc09408512016cbc01d6508","",".csv" +"Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","766920275","2026-08-10T15:48:45.5488148Z","e5661e3377c5e3bbe19d86cb6db2c78e2bb557eea110116ec5f2d3483158cc52","",".csv" +"Dataset\GSHS-全球学生健康调查数据\GSHS\02_documentation\变量使用注意事项.md","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","1817","2026-08-10T16:02:44.7839562Z","4a2f9ae9d3f777092bd673fb520ae3152f7affcff95617ef30c3f2850ef48257","",".md" +"Dataset\GSHS-全球学生健康调查数据\GSHS\02_documentation\调查组件筛选明细.csv","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","104057","2026-08-10T10:56:16.7874450Z","ddf387e84a46a2505bcdb244472a288eb84a638a8b8b6cbe3d52e307660826b5","",".csv" +"Dataset\GSHS-全球学生健康调查数据\GSHS\02_documentation\GSHS_数据字典.xlsx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","548607","2026-08-10T16:04:49.0589478Z","edfa2a16b4e4ef3fc97bd710f6fb9ecd1b1065348cb97c845c9279e12b54df6a","",".xlsx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\02_documentation\WHO数据来源与使用说明.md","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","1415","2026-08-10T16:02:44.7839562Z","2cf38621bfee26698c7abff2c9b39575de68c263094a7abbb8060f0583c4ea8c","",".md" +"Dataset\GSHS-全球学生健康调查数据\GSHS\03_examples\Python_读取与基本分析.py","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","879","2026-08-10T16:02:44.7839562Z","fc1f27087ad4fafdac70a35c353c4c61832187d77fe7c254b6cfa0fac179ffdc","",".py" +"Dataset\GSHS-全球学生健康调查数据\GSHS\03_examples\R_读取与基本分析.R","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","943","2026-08-10T16:02:44.7839562Z","90b506a5688db33b3485b1e3ab6b754becfed297aaeb5fd5b688e60d56b5c4fb","",".r" +"Dataset\GSHS-全球学生健康调查数据\GSHS\03_examples\Stata_读取与基本分析.do","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","685","2026-08-10T16:02:44.7999751Z","20d00f6d400a6e88a53f64037018928c0b69eb0588615996b019ceedadb0873b","",".do" +"Dataset\GSHS-全球学生健康调查数据\GSHS\04_quality_control\调查行数质量检查.csv","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","18684","2026-08-10T10:56:16.8031682Z","590905917312d1f35ef3a70018d36551c98fc4413dadd3009ba5cf1e278edace","",".csv" +"Dataset\GSHS-全球学生健康调查数据\GSHS\04_quality_control\交付包文件清单.csv","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","1143","2026-08-10T16:11:06.4492093Z","6b8ebebb24e07a97f4c52e314b499240dfc033fd40282ab1d2481137adb50088","",".csv" +"Dataset\GSHS-全球学生健康调查数据\GSHS\04_quality_control\数据质量检查摘要.md","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","565","2026-08-10T16:11:06.4512120Z","6ae477a9af20a61d8d8a49b74aa0ac9404bb9b75a3268524f40ef897c76f1fb9","",".md" +"Dataset\GSHS-全球学生健康调查数据\GSHS\04_quality_control\文件校验值_SHA256.txt","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","151","2026-08-10T16:11:06.4502143Z","08c25a185a320ba59f827cac941aaf1fb31914ba3953c8501cc9569ee82adf6b","",".txt" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Ghana 2022\2022_Ghana_(Sekondi-Takoradi)_Binary_Codebook.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","467426","2026-09-14T12:10:52.9684777Z","915aae92ec8c558f46c41bfe242227c6683902842eb2ecf1d67eed81a7cf5b64","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Ghana 2022\2022_Ghana_(Sekondi-Takoradi)_Codebook.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","607944","2026-09-14T12:10:51.9367015Z","db78e8e5c2fd5d09670133c9314528e7a223a4642940c86043f4484299822b0d","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Ghana 2022\2022-gshs-ghana-sekondi-takoradi-fact-sheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","129164","2026-09-14T12:10:49.8591875Z","21acb5e493e25d4c0edb44be81e4553969f48efaf215ff1e149c2fdd9c82cae0","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Ghana 2022\Sekondi-Takoradi-2022_GSHS_Questionnaire-Final.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","285286","2026-09-14T12:10:48.6120832Z","d9a9712abdd9b65373488fc7de3c8d9b46bd42d6bb2ab3bdf43a1ca6cda863a9","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\India 2022\2022_India_(Jaipur)_Binary_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","91490","2026-09-14T12:11:13.1377192Z","89617c55ab7893eb49f4f49eae97ec53d9d7620397b9283c928a362c42817078","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\India 2022\2022_India_(Jaipur)_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","121197","2026-09-14T12:11:12.6246416Z","25ff35760c0a0acb91d4ec016a949c4377169b0c700c756bffa663c8b1717ac9","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\India 2022\2022-gshs-india-jaipur-factsheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","169120","2026-09-14T12:11:11.8432879Z","f187532097184b294026f080dce62f6dc1bd3ce539203f5cd036b28e483f8aaf","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\India 2022\Jaipur-2022_GSHS_Questionnaire-Final.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","127902","2026-09-14T12:11:10.8544713Z","268d056543474bdb4899912a822f36136afef50d354cc8f491163a0e495ed943","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Jamaica 2023\2023_Jamaica_(St_Catherine)_Binary_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","48875","2026-09-14T12:11:28.8752472Z","b59ddcbe87c406f0a69efe0cd5c6df8a0fd863deb0f8096fe5a98bbf58a29a1b","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Jamaica 2023\2023_Jamaica_(St_Catherine)_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","69945","2026-09-14T12:11:29.8063479Z","b899933b15c9b4690648e63bb1592c24f7d485a6f5d9d9283c2d6e61384a3244","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Jamaica 2023\2023_Jamaica_(St_Catherine)_Factsheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","120409","2026-09-14T12:11:28.1121885Z","bb2e2f8fc28e148f71eef52980786f9304baf71d0355cfde7aed1b1931601249","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Jamaica 2023\FINAL_St. Catherine-2023-GSHS-Questionnaire.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","129219","2026-09-14T12:11:27.3438289Z","7355cad731c2ad42403ca0979ef68ea8641a87472d14dd5a073932b5b3e3c096","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2021-gshs-mongolia-report-mon.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","1428756","2026-09-14T12:11:53.2096271Z","0c60dccf164320d647a30a5ec78bf51b9672e94ce38ec620759ec892336db8df","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia (Rural) Binary_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","79910","2026-09-14T12:11:52.8553076Z","592753fab406f9fd6f94a0d72b2acccaede985866a3513a72370bf5e5baa843a","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia (Rural) Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","110136","2026-09-14T12:11:52.0939304Z","34dd6e407ccbaf7ae25b51c753563aeead8fabb677c5df46d7e919bb5d537bc7","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia (Rural) Fact sheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","152087","2026-09-14T12:11:45.4384732Z","32be736084d66e52a8025e383220063c0dd99a337719bd0ce0b7e7bfaabe3e7d","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia (Urban) Binary_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","79858","2026-09-14T12:11:54.3751646Z","d4a8cbf0c0cf3f3e25052139b6ecea37695f29f5421a1d48caa1d1a6d8d584c8","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia (Urban) Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","109955","2026-09-14T12:11:53.6177200Z","5ce700826d36df261e6e3b9daa83c5e11cf225d13c178c9cb979e6600fdf5a66","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia (Urban) Fact sheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","142452","2026-09-14T12:11:46.2778481Z","9768a17c3753967e2b8e47775207a9c12952f502d3aa53c7c26555a4cbf5c63f","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia Binary_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","79736","2026-09-14T12:11:51.2841435Z","d123c9061ff8be2e8899ce54edbf88d2bda7f44eb7926a4873394bc95b9a2028","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","110114","2026-09-14T12:11:50.1679224Z","d09c7701f77796fb191d71171a211cfe772702c773eee7b7d4d10d857c275cd8","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023 Mongolia Fact sheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","142084","2026-09-14T12:11:44.6641498Z","9988579c292048055ca9ab21827a7301bc2f69fc12c67d769efd49735af290db","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\2023-gshs-mongolia-report.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","1249081","2026-09-14T12:11:49.7645060Z","1c72a067bd9120c3f2376f118bef0b3b45d719c304f77cefd2d7fc63c30f4c33","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\Mongolia-GSHS-Questionnaire-ENGLISH.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","122075","2026-09-14T12:11:41.9363666Z","2d199a1cc50c412d573de414cad522a89abf0904681c349fc1dd466b04b50948","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Mongolia 2023\Mongolia-GSHS-Questionnaire-MONGOLIAN.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","159344","2026-09-14T12:11:43.1965830Z","eb07ab306c2d32c6136898dbc39c4fe708d2c89d0c7122a73c08ea7b73e5d0da","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Morocco 2023\2023_Maroc_(Fes)_Binary_Codebook.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","519466","2026-09-14T12:12:13.4194454Z","d676ed96cb4f20330657e7b8fe95291b986c55b766568b054c0cae3f16fc0367","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Morocco 2023\2023_Maroc_(Fes)_Codebook.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","644956","2026-09-14T12:12:11.3636361Z","421674738047d4c5b42bf78ec9cd8db3b1612c1288bc4dfa8cee91544b581b32","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Morocco 2023\2023_Morocco_(Fez)_Fact_sheet_FR.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","141284","2026-09-14T12:12:09.5001343Z","c1c3ae5e22b07c3a483fc634172128b6f12c2c3fb5a08bf4ed1b667bd48f14de","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Morocco 2023\2023_Morocco_(Fez)_Fact_sheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","146190","2026-09-14T12:12:10.1530692Z","df33338edbdfea209234bcc4d177f4f36ab0ad6f7c0b74170237d628315ca273","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Morocco 2023\Fez_2022_GSHS_Questionnaire_Final_ENGLISH.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","264484","2026-09-14T12:12:06.9973963Z","1e61a93c1ad6335252669d575a13abc32d6896c5f94976ad8af0bfd6ec0fb1c8","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Morocco 2023\Fez_2022_GSHS_Questionnaire_Final_FRENCH.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","521524","2026-09-14T12:12:08.2121519Z","974995b8e4ab2501d9378eb78a76fb5b56d9641b732c702496c84aabe7a3e6b3","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Wallis and Futuna 2023\2023 Wallis and Futuna Binary_Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","51582","2026-09-14T12:12:27.8888835Z","fa38d372dfa50912b4178e46e7f8ea680cdbc0447b20fcc9d3f6258fb941dde4","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Wallis and Futuna 2023\2023 Wallis and Futuna Codebook.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","112085","2026-09-14T12:12:26.8453557Z","c61028983ec57ed6618a2d23ec6dc2dd370b85a50b7f2e0aa283b0ea8201d259","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Wallis and Futuna 2023\2023 Wallis and Futuna Factsheet.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","156993","2026-09-14T12:12:25.4800902Z","43d836247b92bcd262333af911bfd4844347590bff4be3178682a3852cdac3dc","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Wallis and Futuna 2023\Wallis and Futuna - GSHS Questionnaire - Final - English.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","100986","2026-09-14T12:12:23.8552169Z","655adba3230750c21b7de7dfbebceb93e1d776ec7bcfd0568a487d1dd65fb18f","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Per Country\Wallis and Futuna 2023\Wallis and Futuna - GSHS Questionnaire - Final - French.docx","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","108583","2026-09-14T12:12:24.6214205Z","9dd9f6bbb798cda611ea7c91a04b39dd4cc68dadeaadfb7322e3582e0acf3d33","",".docx" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\2018-gshs-core-expanded-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","223353","2026-09-14T10:39:18.4957416Z","d593a748b6b78647a56af5b9868c92b600c39bbd40f52f1a6b951392c76f1cb1","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\2018-gshs-core-modules-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","588268","2026-09-14T10:38:56.2862871Z","b68cbb996c8af94214f6b3b01ddbe81c7c2106c7bc2b29f1693b3d89f67ee1f6","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs_core_expanded_questions_2021.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","452753","2026-09-14T10:38:38.3385158Z","552c782ab02b03d9bdf1e5aa5566ae9420cee4920c9571e0bc8d56c5c7425a11","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs_core_module_questions_2021.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","137372","2026-09-14T10:37:41.1133260Z","e2be57cc5518da286632c2736ffe6ff1a1482c2102b017e07b6715370a7017f3","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-core-expanded-modules.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","208963","2026-09-14T10:49:09.0283772Z","06bfd175ebf1037bd81c3a567316b68fd7f1ad63370e6b60e220b00d2efdda5d","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-core-expanded-questions-2013-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","188093","2026-09-14T10:44:29.4646695Z","bf2081aacb5b2d0f9e3eeb545b2ed4286b54223d62d8939ca0ecddab9080badb","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-core-modules-2009-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","212793","2026-09-14T10:44:40.5118912Z","de2fe24ef9e07656990fafb6dfbaa79861cd4ad7c67d6ebb17b210abdffb5816","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-core-modules-2013-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","111866","2026-09-14T10:43:09.7243436Z","441a9b533a164370e1fd24c3cc8ad47e61cc5aa728df9b8ab37425046ce84964","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-core-modules.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","289270","2026-09-14T10:48:57.7937365Z","df4715c05157d49d98d235c405d30e18ade88e8b52408c8a58a23aee6df991b6","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-item-rationale.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","210663","2026-09-14T10:49:22.5226672Z","ae9ee54ed5239e2493c82d19370d7bb4ddb6b4a0905c5271c029399b7c8ade02","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-item-rationales-2009-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","108571","2026-09-14T10:49:15.4568063Z","3a1772f1459b2ec4f348a4de255f7832634b1e063115c4753b7fa079f01298f0","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\Questionnaire\GSHS Questionnaires\gshs-questionnaire-core-expanded-2009-english.pdf","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","320901","2026-09-14T10:48:51.5479467Z","6ffb46ca89d95fe9c1eafc91851560cd92daa0626ed7cb8d6fe160bee9dfbadb","",".pdf" +"Dataset\GSHS-全球学生健康调查数据\GSHS\README_使用说明.md","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","3201","2026-08-10T16:02:44.7839562Z","9dbe70542efe18db306978ec0b1abc0f2e71908f91c3f7ad69d3c90ad74471c1","",".md" +"Dataset\National Survey on Drug Use and Health.zip","NSDUH bulk archive zip","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","provenance archive","none","archive_only","public_use_terms_review_required","4844112316","2026-09-14T09:56:32.3372391Z","2569e509dc6fda0dba44136346ded5962924458e11528a8d01fd397fb7e8dbcc","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\2020NSDUHDetTabs01112022.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","125659272","2025-02-13T12:43:59.0000000Z","df8efc273712b82ed568bf7cb2e07fc7adc2eb312b4da55b787c45c9af957b0c","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-ascii_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","14350416","2025-02-13T12:43:59.0000000Z","8429be043007c0089d8a2b4c7afaec97e417a124ff2743a16e7e2d1624c4845d","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-ascii-setup-to-sas_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","139739","2025-02-13T12:43:59.0000000Z","413a27727f5c24c74be5d149e1b936dd8ecbc66553c902615f2cfe8fc5121188","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-ascii-setup-to-spss_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","106897","2025-02-13T12:43:59.0000000Z","ed7a103b237be9117ddc15ab6643cb965c88097762393e62e962b0717ccd13f0","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-ascii-setup-to-stata_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","117270","2025-02-13T12:43:59.0000000Z","82817ed6eeb51942518970afe8267b1230f98afb0cc929524be8c32954f68105","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-r_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","15365705","2025-02-13T12:43:59.0000000Z","49684d46dbfda973d4e6ced0e0e493a72a171871c0f852d5891731f349176e92","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-sas_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","19511310","2025-02-13T12:43:59.0000000Z","234d5f243f29132b14de2f0cc8f92da638af66bfce633cf02a2f45097aa54ae6","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-spss_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","21895272","2025-02-13T12:43:59.0000000Z","f0c662eb5a6c97c409fdaba6568acb1e99517645f5d2d7007d2b688fff7395d3","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-stata_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","11440497","2025-02-13T12:43:59.0000000Z","382ba7023212e6d7397b3d05ada7d81db453f27026357ff7e9b49270b9b9f752","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-bndl-data-tsv_v1.zip","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","17031851","2025-02-13T12:43:59.0000000Z","22ff1a65eaf03628d4b666796a01606c67ba6c327f09fd2fc236b55e10d7d604","",".zip" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","7234995","2025-02-13T12:43:59.0000000Z","66b367dc69fc3a0e72f0118ebd92d4e089b39abe202dcfd3c9c9f0c486705f90","dup-0049",".pdf" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","212155","2025-02-13T12:43:59.0000000Z","5e9ffd8dad9a4c1ae549b807bf9caf6530f9b60aeb727acb166dd3627facf151","dup-0045",".pdf" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3069600","2025-02-13T12:43:59.0000000Z","cacd9c9d229a763d14e8e857e0e51a55c3a7174a784d5ce4d357d6a5107d7b93","dup-0088",".pdf" +"Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\README.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","82241","2025-02-13T12:43:59.0000000Z","8fd9492a8ab2944b1292ae92e42faaaf433c7e2431db80bd71901e3edb648519","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH 2002-2019 Variables ConcatPUFComparability.xlsx","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","466770","2025-02-13T12:43:59.0000000Z","ba60b5cd326904fef0ece156b8ecc792300f00aaa9e93cc06e20a6c8f0df784a","",".xlsx" +"Dataset\National Survey on Drug Use and Health\NSDUH 2002-2022 DASR_Comparability.xlsx","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","767022","2025-02-13T12:43:59.0000000Z","2ff292145e7685911dec005166e3140d4d3da11514d8fbc4eef414af8c12608d","",".xlsx" +"Dataset\National Survey on Drug Use and Health\NSDUH 2021-2023 Variables PUFComparability.xlsx","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","377469","2025-02-13T12:43:59.0000000Z","9e56521ae94a73b2d1682c4cf4864748599c5c087de109eb7ea2e8c4bb4481ae","",".xlsx" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH_2015.DTA","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","181460932","2025-02-13T12:43:59.0000000Z","d6a0c8d6a619efc042540305ed2074222907921a30f4dbd9cca72f25ca904d00","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH_2015.RData","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","425722044","2025-02-13T12:43:59.0000000Z","2002e1c097d4fa1e4d912d99c350f2e735ab501a4589e9712c2d529d8013381d","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH-2015-data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","87476","2025-02-13T12:43:59.0000000Z","3476c0161fc1da7e6f353f24cc134e45b552b7b6c7e6774c164c566d3e781cd5","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH-2015-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","9007685","2025-02-13T12:43:59.0000000Z","46bbc6ea795fbfbc6e22a47a1bb222ed4ef3188e7757aad7cfadab219be89734","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH-2015-DS0001-info-questionnaire-screener.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","285705","2025-02-13T12:43:59.0000000Z","0c3f911c792d8d31a44baeedb44210ab8a37054821ee32c6c83a5c413eb980f5","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH-2015-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","377250","2025-02-13T12:43:59.0000000Z","dfe0992697a893a652ba95ce23a7d762b01283203c078c5a5128ba36ba653edf","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH-2015-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","1203594","2025-02-13T12:43:59.0000000Z","1ac11c71b1b3d6e9389bc1960eeb6898134ad27efc7b90610ceb2881aeb2069d","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2015\NSDUH-MethodSummDefs-2015.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","1545617","2025-02-13T12:43:59.0000000Z","aef09131ebd222ebc0ce6fce9d59d34e6e1fc1c608371a06e4cdceca73049d9b","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH_2016.DTA","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","179083483","2025-02-13T12:43:59.0000000Z","5d3e7e2a5d475c2cd124870aef16bf81779f3fd30545dc084f3a0bd4b59195bd","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH_2016.RData","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","422374679","2025-02-13T12:43:59.0000000Z","2b7ffac7254330e129ca19489d0ce9ee771087ed79b74c8a2b99ea0e9a549399","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH-2016-data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","71752","2025-02-13T12:43:59.0000000Z","055716987d41417d74cf6e3d4ce3963fdb2baef69ae4a91b3964dc95e3024502","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH-2016-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","9008209","2025-02-13T12:43:59.0000000Z","5575b18e4fadeef1bcbc9318703080d9de51f63b52181d34f2265b82fb43385b","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH-2016-DS0001-info-questionnaire-screener.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","320563","2025-02-13T12:43:59.0000000Z","249ba472457c41d9a822ca193f7d1ff159f699db55cc7e45ad826dffbb56e038","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH-2016-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","353311","2025-02-13T12:43:59.0000000Z","eeb5c83722c5a202c1f69a839df5308081ec37ea4c60117f407beca43a577411","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH-2016-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","2172940","2025-02-13T12:43:59.0000000Z","b12d4dc9dfef3a66474c9ad677c2c1b52567a96b320c5e3572671d88b23a630a","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2016\NSDUH-MethodSummDefs-2016.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","2733757","2025-02-13T12:43:59.0000000Z","55a0eee35f5a8d1d22217317d60ef7812b5b43084dd065d749159deb03e75a0a","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUH_2017.DTA","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","176545521","2025-02-13T12:43:59.0000000Z","d516678fc3d8cac1974680221737b36645b29969926f980d9e915932a22a016e","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUH_2017.RData","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","417953126","2025-02-13T12:43:59.0000000Z","f55359b7462d97e5ea5f7e022bd77ea990af1abd114fc116d6c17ed135f7a9c8","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUH-2017-data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","71934","2025-02-13T12:43:59.0000000Z","016e4220dedc01a5a6b9071ab49b580f95adeec793a9699ec2a81a3e6e38015c","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUH-2017-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","7108287","2025-02-13T12:43:59.0000000Z","15d913850569e94096ddf36734e5a493ef5d6d30ce7eff5d6731df3fbac0d5e4","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUH-2017-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","172552","2025-02-13T12:43:59.0000000Z","55043a6e01e617a2b374049424d0240e40226c1feaa3bcc57677388bdcd531d8","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUH-2017-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","1828333","2025-02-13T12:43:59.0000000Z","15a58c96d867b820efc29135f32c74d878248747fa609c522a1d717feca32d1e","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2017\NSDUHMethodSummDefs2017.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","2739539","2025-02-13T12:43:59.0000000Z","d76f7aa2ae971d7a60bdbc9b8642e8ed3117330cb6162fdeabbf34f032c9ef92","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUH_2018.DTA","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","179184360","2025-02-13T12:43:59.0000000Z","9b9be50556303027755f7e81c09bbb26abba69768f80776c36def9153a128130","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUH_2018.RData","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","424261289","2025-02-13T12:43:59.0000000Z","c98bdad767318c2cd594ac007bef00c17917f142893d6a92eca04f783403355f","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUH-2018-data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","74354","2025-02-13T12:43:59.0000000Z","ff1eea6a45f2259f23c50319a43356c9473c0db024bfcd776925c50b5e061066","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUH-2018-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","6575258","2025-02-13T12:43:59.0000000Z","ab6db8ea63fcde55b509ad1ff7e9c3a21106b5f6010facea243166d816930693","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUH-2018-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","197587","2025-02-13T12:43:59.0000000Z","823b32cfa0f9ddf2931a772d37532cfa93b2089d3002b6e59c5bfaa81826f2d7","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUH-2018-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","2502580","2025-02-13T12:43:59.0000000Z","d0e041c0da0b383dad69b5de255521d84e1d34e2ea5997063ca32d5a3aa6c021","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2018\NSDUHMethodsSummDefs2018.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3208538","2025-02-13T12:43:59.0000000Z","39fc14b5cd2dabed7a660786731c3d860fd068f8a629709ab1ef2e61569186cd","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\2019NSDUHMethodsSummDefs082120.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3185413","2025-02-13T12:43:59.0000000Z","80af0366a4c85ff7e9e4b20709ff8d622cffa3c361ace1cc5bffdef7b55c4184","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\NSDUH_2019.DTA","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","181127166","2025-02-13T12:43:59.0000000Z","07aad41d1d0d9cea8d1497cbca04648084931ebcaead7788067b74eb2116a440","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\NSDUH_2019.RData","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","428528543","2025-02-13T12:43:59.0000000Z","fb359ae0b62888d7fd6f50ad7718e9326c386c44966064a685a8f453eb9b316c","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\NSDUH-2019_data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","98747","2025-02-13T12:43:59.0000000Z","0daf2a2b84c13e8731dfef42759203055b0e86ac06c5da72bc03953ce60b5c38","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\NSDUH-2019-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","5735882","2025-02-13T12:43:59.0000000Z","e602d0f547ba62d564665bb71a9ab08dce1f1dd24df00724360dd4cec879c41a","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\NSDUH-2019-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","254635","2025-02-13T12:43:59.0000000Z","e15b429f36a47619134debfa289d1d9be0fc7cf819a5e54c8275741f7bd9ad47","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2019\NSDUH-2019-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","5914982","2025-02-13T12:43:59.0000000Z","2a6381ad41a18318cacd63c3bd0d8cdeb9bcd8b1bed3c695fad8645b37d9dc74","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\2020NSDUHMethodSummDefs091721.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","4135916","2025-02-13T12:43:59.0000000Z","70a2470616e43322e37aa0086cc7c08cce6c7d5e74961777c021bfad006d975c","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH_2020-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","84621","2025-02-13T12:43:59.0000000Z","cefd39ca1c0a0b8200ab7169643a99c9d7011670d93ff2cdebb21385e0b9b8be","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH_2020.dta","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","111468255","2025-02-13T12:43:59.0000000Z","554e44ae1752b1c7704adc2d9b6cc789783c8b02ff5cdcb5bfd6935d01e3af0d","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH_2020.Rdata","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","262856934","2025-02-13T12:43:59.0000000Z","5caee6ce09cf80e4ae2d96168e92c5a7e40947871b36e1168d67d011b1fb1812","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH-2020-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","7234995","2025-02-13T12:43:59.0000000Z","66b367dc69fc3a0e72f0118ebd92d4e089b39abe202dcfd3c9c9f0c486705f90","dup-0049",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH-2020-DS0001-info-questionnaire-showcards.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","212155","2025-02-13T12:43:59.0000000Z","5e9ffd8dad9a4c1ae549b807bf9caf6530f9b60aeb727acb166dd3627facf151","dup-0045",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH-2020-DS0001-info-questionnaire-specs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3069600","2025-02-13T12:43:59.0000000Z","cacd9c9d229a763d14e8e857e0e51a55c3a7174a784d5ce4d357d6a5107d7b93","dup-0088",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\2021NSDUHMethodSummDefs100422.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3783516","2025-02-13T12:43:59.0000000Z","3f0a2ba77c5c3221a570728081fafc661f2f9af2f0995e705f60e41ef1dd2887","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\2021NSDUHmrbCAISpecs011321.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","2574764","2025-02-13T12:43:59.0000000Z","5b80ee35532093e67b4554eaf41d26e6486d2962bc7a99f05a8fd70f6747868c","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\2021NSDUHmrbShowcards011321.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","302574","2025-02-13T12:43:59.0000000Z","ac7ef37bbf56a16e8d934e4855f30663f0be6816b257167720dc69bfab9293be","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH_2021-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","88457","2025-02-13T12:43:59.0000000Z","cafbcf89a997b8d43499ea58a2f781c213a11016f5675c9fc357097fa14aa797","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH_2021.DTA","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","195415913","2025-02-13T12:43:59.0000000Z","ff21660369405db2a8d6eed365f518a8b4e03b449fb63364bf24a74b14568d11","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH_2021.RData","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","476249940","2025-02-13T12:43:59.0000000Z","f1b2d7fd5d1d3e866109b09648cfb9dbda8875f2ee396c9d8dda696e8606140b","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH-2021-DS0001-info-codebook.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","6212186","2025-02-13T12:43:59.0000000Z","af6d67e9bb6c98bab13f5bb7a9307fed5ed520e964cff79a90739c510918c374","dup-0079",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH2021PUF_Supplement.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","142730","2025-02-13T12:43:59.0000000Z","1cae7337137d60cbd8b2e868bc31db7298ef69ec1a90e412d84e3f5e6d8e20d8","dup-0013",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\2022-nsduh-method-summary-defs-110123.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3721333","2025-02-13T12:43:59.0000000Z","f1370d07e9f1d681f8ee43bbfbbe71f1987d8ffac75485016dea5ecb41473b07","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\2022NSDUHmrbCAISpecs070722.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3519542","2025-02-13T12:43:59.0000000Z","ee055165366fdfa33f62150281f81c481da2984a0c64b053cd487ca9bc55e47a","dup-0106",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\2022NSDUHmrbShowcards070722.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","230407","2025-02-13T12:43:59.0000000Z","61af5f5543d0c1206a6941a9e97def4e34b1d668678bcab7759b3219c8a8b7d2","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\NSDUH_2022.dta","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","176299024","2025-02-13T12:43:59.0000000Z","1ca4f87cdfd61890c040611dadaa763be553445e8b89b4e634164f7934ae4171","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\NSDUH_2022.Rdata","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","37036541","2025-02-13T12:43:59.0000000Z","c4de65c454082b62730d8b3a0246ebacff9d1d2745200dd44814de502f788583","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\NSDUH_data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","74325","2025-02-13T12:43:59.0000000Z","e496e1a88f6da03c80e82c163c83d3bd4d8a24c637a07704ec305a5c87403cae","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\NSDUH-2022-DS0001-info-codebook_v2.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","5268376","2025-02-13T12:43:59.0000000Z","b306e26967b5e0af01140315d0f2399b7bae9300f7b0161d696ec7ff7da31172","dup-0080",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2022\NSDUH2022PUF_Supplement_1Nov2024.docx","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","68478","2025-02-13T12:43:59.0000000Z","f965a8c55dea198d67a0171abcc3f3d8b0b6dbec81b63e1cdb33718f7ffca21f","",".docx" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\2023-nsduh-method-summary-defs.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","6581500","2025-02-13T12:43:59.0000000Z","c09fcb97163b5031988e963e639c1dead1919757729f71f8fce7527ab9b4e323","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\2023NSDUHmrbCAISpecs020223.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","2389364","2025-02-13T12:43:59.0000000Z","47b3fb93644bfc1b2c11d4b055c28abdc7363f4868057a29f24d15e18b726c6f","dup-0032",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\2023NSDUHmrbShowcards020223.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","240128","2025-02-13T12:43:59.0000000Z","f07782d65949b4903d79b4a67a6048c8c4fcd98c92d6c5e05c09bbe689ac0a95","",".pdf" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\NSDUH_2023.dta","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","168246237","2025-02-13T12:43:59.0000000Z","bc6d3c8adefa7bef64bf5d3a31c47dee9dc0aeefa96c9f56a97dbf75e6b5ab3d","",".dta" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\NSDUH_2023.Rdata","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","35411634","2025-02-13T12:43:59.0000000Z","b69367b4eb24e29dcf7e32f79cb95674726816112751e34b4c7dc59988d000d5","",".rdata" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\NSDUH_data-stata-supplemental-syntax.do","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","74331","2025-02-13T12:43:59.0000000Z","f98436e430b3260aafabace0109ae37a077c2f596a40908873f7af2b861624f8","",".do" +"Dataset\National Survey on Drug Use and Health\NSDUH_2023\NSDUH-2023-DS0001-info-codebook_v1.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","6312847","2025-02-13T12:43:59.0000000Z","e7036f7b5ae3dbeeecb8320954e5237692caa4d6868299ffa9e399c89004fed7","",".pdf" +"Dataset\National Survey on Drug Use and Health\Sexual Orientation and Estimates of Adult Substance Use and Mental Health 2015.pdf","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","3879173","2025-02-13T12:43:59.0000000Z","c829116a589d5fe8cbff3ef50eb65431c2c585959d75860016dc8da44ad81ea7","",".pdf" +"Dataset\NSDUH-2021_2024-DS0001-bndl-data-r_v1\NSDUH_2021_2024.Rdata","NSDUH 2021-2024 R bundle","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source candidate","none","conditional","public_use_terms_review_required","138584076","2026-09-03T15:12:12.6949270Z","32eecc96ad6d849c1e9e64a119483781ddbcc904f65e7ca9d582bf0ce78b2cb1","",".rdata" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\athena.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","15155","2026-09-14T21:19:15.6319267Z","665abecfab1ee7f13557ef74a4a92aba5c7474cbe9811c164ff13a3e9df9151e","dup-0048",".下载" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\banner-styles.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","10252","2026-09-14T21:19:15.7839987Z","3e2bb12dd78408c9371fb23c028385d4b4319f32951f23025eacad7c3f9b157a","dup-0027",".css" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\bundle-playback.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","30170","2026-09-14T21:19:15.6691081Z","9dee864e40cc6555aec50ba166bc68a222258c1c156b44ee277293ef0b63e87c","dup-0076",".下载" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\gtm.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","466813","2026-09-14T21:19:15.5911764Z","8b09d696f6c0053baef141b35d3f86bebadd05c05f5ba21d9fc1b4110ca3fdb0","",".下载" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\iconochive.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5649","2026-09-14T21:19:15.8208798Z","103585bfb64e2fef8a7c9db5797cc308c484b7b71f7836bd7038132327c08175","dup-0009",".css" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-csubk-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","897","2026-09-14T21:19:16.0716527Z","20336ff6828774259205aae3deeba8bf1e8d8493a0e4b631a1a3e28b4a7a8c28","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Dsub12-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1028","2026-09-14T21:19:31.0826963Z","33c0a618f64217ada7683d915d749641cb5fe7e1c5abdf36beabf1f8ed6f12e3","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Dsub4-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1004","2026-09-14T21:19:31.2728455Z","86d13ddcfc78a87a7178fd3d78d4cec5eaecf19130295cb2b102ee15ea90b51e","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-dsubk-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","941","2026-09-14T21:19:15.9292908Z","fe97140ac6946c33dc58f8701170df2c91abe25054b57090757db62289bd446b","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq2-1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2532","2026-09-14T21:19:16.0361711Z","ee3f7be5749023dd401c2518fb4d1a0dd548b9d52e48344f3a621148fa3e25da","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq2-2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1513","2026-09-14T21:19:17.4082347Z","c1a26f26fa9ce2b9af39265ab53493fb4263777ff15b279ddee071d184d1fc0c","dup-0085",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq2-3-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2642","2026-09-14T21:19:17.7664741Z","f0cf00e6f2a7493e9f9d161768ce1f123c8ef18d457f1060502ebfd597973dfe","dup-0108",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1265","2026-09-14T21:19:18.5113709Z","596ab27151143cb1419c77c8440221c8e5a09cc029aeea48b79ff0663260b404","dup-0042",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-10-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1772","2026-09-14T21:19:21.9970833Z","e530d5e0c520fcddafebb81e53b18e75595300697d9d17b2181b363725a31fd4","dup-0103",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-11-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1276","2026-09-14T21:19:22.1933683Z","e42219b79b5d90c497c9ea0f911ca214a7d659adfd54e14761741ccf5c10a5f1","dup-0101",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-12-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5393","2026-09-14T21:19:22.3547481Z","120a17c43d14554d21672a9e6aedee3b73da43fe3af5464cf87998cad4644c86","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1536","2026-09-14T21:19:19.0939056Z","0e240856a2a5d3d65d1fedc49f577af57fabcad853dabd5221162cbc768fe058","dup-0007",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-3-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1792","2026-09-14T21:19:19.3697957Z","fad868e6536d6ac34775bda80a231f4c1483cb2fa1402b04bcbcfb3c912ddf80","dup-0113",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-4-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1917","2026-09-14T21:19:19.4518133Z","49a2674055eb6b85af5a61b08119c17d8aaeeace3e924cb6f71d4d5d4d8e44ec","dup-0035",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-5-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2131","2026-09-14T21:19:20.1074291Z","339a331e6f1d38d6363b34f37d1ab8b6631d7abb68787d7b4b0efbc218901e61","dup-0021",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-6-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2052","2026-09-14T21:19:20.9712879Z","a0f91774fc2b5c00b3dd6fb0617eac0669c27090f9aa519abfce32d2c29dcd33","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-7-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2800","2026-09-14T21:19:21.1406057Z","847f04b302e9f1558b30e60f49574f74c2433565e9be4dc4d3d3c787c1d708fd","dup-0064",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-8-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2469","2026-09-14T21:19:21.4156333Z","35083abcbc5a1693cec76ea9c30cd2c530c9f72c1251bc34fd2f13d49ca4d628","dup-0023",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-9-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1858","2026-09-14T21:19:21.5000483Z","ff650ba8a349cf277db420ee608cb8a3613799887a2092cc67189faa9766beb3","dup-0117",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq6-1-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1839","2026-09-14T21:19:30.6968617Z","1dd2276fe6f91ac727860690014445a4feeaeb5204d6908b504e07a88c5a4c10","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-external-link-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","8042","2026-09-14T21:19:26.5731316Z","924b5323d05ebea976217e0262ccc2eda508c93ca20e226f8221dfc96b97490f","dup-0069",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig2-1-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","63518","2026-09-14T21:19:17.9315971Z","b8fc7274ac53c0809f8cfd6deb2075bf42ac3728cade6c6029f250560f1b02a6","",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig2-2-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","75904","2026-09-14T21:19:18.1256060Z","f22210277b8702c0806b86fd5663eccebedfebf522a73fb5d3717092b1d5d160","dup-0109",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig3-1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","11620","2026-09-14T21:19:25.5544467Z","e82a1b6e71978256a774b90c24d66d23b46a82db8fb9eeee50a77c833f01071f","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig4-1-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","17047","2026-09-14T21:19:25.7472553Z","3cae37794b933b9b534272bfbd10d7ce4d16023b496374db20673d95bc9dbce9","",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig4-2-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","9732","2026-09-14T21:19:25.9396690Z","046e64eefe51cf6818526bffa5e06f687245da8988489e8e69293e3c32351d7b","",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig4-3-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","12167","2026-09-14T21:19:26.1313981Z","21ec3fc2c4877162df47235bc9bafa8a6e1388d750c14ada60f86e85a12a64ce","",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig4-4-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","11175","2026-09-14T21:19:26.3786095Z","05f12235b8892a4a5a913c938b855fbe38b7a7d559eeee288d180da888c7cb76","",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig5-1-2021.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","18184","2026-09-14T21:19:26.7654955Z","0e45bec9874b9a04931d3c71d2f8c42e9482dad71d77042e2a7bb5346e7e627a","",".png" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn141eq1-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1635","2026-09-14T21:19:34.4214017Z","5218902dd41857a6495549914a0e1eeed0d65f8720f5c89f17440185d98f7bca","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn141eq2-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","851","2026-09-14T21:19:34.6136707Z","6770bd2eb99655ba246ce823ae5af6b13ab6cd149bf4845353e4c0c22f70192c","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1009","2026-09-14T21:19:31.4686419Z","6e3ac5abb973577142de74ba1703ec4c30c0b5b0f4b2c3a10c8ec97ad79c9121","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","897","2026-09-14T21:19:31.6633422Z","597757dbb80e6ccd42d3ca670bd0f71c6b7c68c0b764adebf968c27f58112c02","dup-0043",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq3-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","869","2026-09-14T21:19:31.8571185Z","450816306793421446f9435891877000a6dbc15360a372b45561c9c9ef0a26c4","dup-0031",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq4-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1265","2026-09-14T21:19:32.0563444Z","d28ec943c71363acf10f4732032d6ebf44012b9beb75c9314d4117e9c83ef986","dup-0095",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","535","2026-09-14T21:19:32.4772960Z","db0f5efc95d43f5c19b6ce4e2ba0e91a3dd9e7f562b4128fac34292a908a47fe","dup-0098",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq10-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1041","2026-09-14T21:19:20.0248306Z","fa49e0a726fa9fc6ebf24a73e9db78d59a5af6032ebd489ffe7a626f4bf69c8e","dup-0112",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","903","2026-09-14T21:19:32.6746927Z","21a8f20a0906b874d54ab2d6646a2074eab2b98cdf60c8e63864c838ef6d9ba6","dup-0016",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq3-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1275","2026-09-14T21:19:32.8687873Z","69f1253be0687d7008944fbcee3fb91c37019a9395b2ea1f5d39b4a7305731e5","dup-0052",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq4-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","437","2026-09-14T21:19:33.0605287Z","cdf47fedf2b7b4073aa7e39c5daeff00b0808828765250cffa66229a287920f0","dup-0091",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq5-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","802","2026-09-14T21:19:33.2528283Z","1ac738544eac8f12e25901b4b3329a33c0d43621e1bd1c19cac8308cab4b5036","dup-0012",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq6-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","766","2026-09-14T21:19:33.4451163Z","203361feb1bc99ae252d4c2b36b61a6c0c30a0dc5fa58510e0291476d6a19bb2","dup-0014",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq7-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","414","2026-09-14T21:19:33.6388025Z","c0f5d2504ed73ae770b7c654699bb366f5aaf526ba5aed43665f7fa466e059f4","dup-0083",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq8-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1231","2026-09-14T21:19:33.8359948Z","8ce31d3a392152bae713a5e79f6abefe514700aa0af5944b2239505448ef4dc1","dup-0067",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq9-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","803","2026-09-14T21:19:34.0316564Z","3bca8ab9f35a2a4f5d50d6c33787c9df5c0115a34be5c17499eed2aa1f4cf570","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn42-phat-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","872","2026-09-14T21:19:34.2268020Z","c823238c9ec02ea77805a9768e31c9c226f30de64cb3dd19d33d884af8f331ca","dup-0086",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1194","2026-09-14T21:19:16.0017635Z","fd4c573f13eedf55b36046e4ae598f8b241b9545c1dced74848a36b6ee7bd1e8","dup-0115",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq11-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","991","2026-09-14T21:19:19.6990779Z","01981e84ec539c1fe4420cde4391b081b2d66ee046895b9546f704e77e94d96a","dup-0001",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq12-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","983","2026-09-14T21:19:19.7800799Z","d0919a26b36d1eedcd88ca5197ee81573356398c5b1b380201d266a9d5e486c8","dup-0094",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq13-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","953","2026-09-14T21:19:19.8600971Z","9293a9601be0f0eff0ec0112f37d8855558b6585925a4a964f6773ecb64b55ad","dup-0070",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq15-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1199","2026-09-14T21:19:19.9432222Z","4a926b78c739bcaab11ad68555c70d6695259bf744839adf2b07a860a7203ef4","dup-0036",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq16-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1091","2026-09-14T21:19:20.7243090Z","0715719ece33268d990c0cb34b72cdd2150c57efbbea5424eeb6baa7c4efa22b","dup-0002",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq17-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1101","2026-09-14T21:19:20.8052439Z","e784243bf6a55e34276ad66aaf7f43b45eda62069d3dc6ca48270722dd6c6bd5","dup-0105",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq18-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1199","2026-09-14T21:19:20.8898994Z","409daef8e29c891c694a86c664437f1ea8781eaa5777a89d03494a41c6d61185","dup-0028",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1282","2026-09-14T21:19:15.9665190Z","f074040242c438858e30da265c6228bf3c350525619451aab82ecc01cd7a6f2a","dup-0107",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq21-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1290","2026-09-14T21:19:22.2745434Z","42627d09b2dc86c7c28ef50ac737a98dcd813b28952fee693bf85be4adb1c988","dup-0029",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq22-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","988","2026-09-14T21:19:23.0958246Z","79c6505f4995e2f33eb034fc0bcc8cef598c39141cade6a3a874577c84befc68","dup-0060",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq23-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","4580","2026-09-14T21:19:26.9583693Z","354d0b6ecedd253cf13f83ed3022f6ac35cb045c15717bd4c6e3af49937329d8","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq24-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","4742","2026-09-14T21:19:30.8890622Z","531a57db905dc6d65a2996694a8fcd9493d576635233130847ccf1c6af9b9d03","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq3-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1137","2026-09-14T21:19:16.1068163Z","8497b819fe11c16ba56c33d01a9565d2f3b80005b31b3127473d9dda3caf8f9f","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq4-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1667","2026-09-14T21:19:16.6386386Z","bf37cbc1012fda70aef06a94028b6c22a02176c6c3aee405f237dcedfe6d1ac3","dup-0082",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq5-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","918","2026-09-14T21:19:17.6014542Z","ff297bf0264f1a1f1d7b034725efd3b7262aecfec25cdbe8716f15ddb1930399","dup-0116",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq6-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1460","2026-09-14T21:19:17.8497944Z","9c4c93011905236f6d76841aae80d9dd0d4679e224d517ed7dcf686ce42994e6","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq7-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1073","2026-09-14T21:19:17.6843035Z","92d4b8d624d68620f2e7ae89c2d1624ae2cc7747042c05b34af228760ad5362b","dup-0071",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq9-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1245","2026-09-14T21:19:19.6168562Z","96aa657e3e326408978d94f87714bc123fac1dc6e01fa8c0857d9865844a38cb","dup-0072",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-lambda-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","884","2026-09-14T21:19:17.2169947Z","37a1da8f93895852d3ae3c552dc561b2912222960a9b0d71d9bc55c094d804c0","dup-0025",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-lsubk-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","922","2026-09-14T21:19:16.8298862Z","926fe67e4b6ea32efb68f7bd06080bed715ce538d524ea990f8eb900f4649bf4","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-nhatsubd-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","994","2026-09-14T21:19:18.8989876Z","8e65964a76db06d3c96b8438a1d898213618172cfc7518b72d0cb0e82476a27f","dup-0068",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Nhatsubd-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","945","2026-09-14T21:19:32.2489479Z","b3808caa51de8b1cd1c39c99a430b8b7d6860d8cd4c98528437e07c7088828d6","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phat-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","892","2026-09-14T21:19:19.1766069Z","7e755fcd3b62416bc7687d30c1fa0b0881e450bfdaa74cb83a88033be892f1d6","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phatsub1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","925","2026-09-14T21:19:20.3172590Z","35733edcafc8c589f74ea866986d875df90b17966b662c6e379bade0cc40b1b9","dup-0024",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phatsub2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","940","2026-09-14T21:19:20.5115293Z","cca276b0082dfd84c3478b8545fde90c3d9983de8fb0a29361a83c9e580ed25c","dup-0089",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phatsubd-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","960","2026-09-14T21:19:18.3197590Z","649072b10cb562e3f99f27e8e3fa4d8e19842daccef82f145468aeeff4f7d5ca","dup-0047",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-pi-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","857","2026-09-14T21:19:22.5232973Z","3287daec529ef279343216807a021e7362c6c17b6f6469031615e1f8e376d06b","dup-0020",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-pihat-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","872","2026-09-14T21:19:22.4414486Z","59aa62ae2980eb136f3ea3341a8a8fd6e192fca47662adbb128394a7c178cb3c","dup-0044",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-pisub0-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","902","2026-09-14T21:19:23.0164551Z","3ad5a34afe7d14782bd3b41a665da67fe225d719f2f4631c2c8015350a0f8cfb","dup-0026",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Qsub12all-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1297","2026-09-14T21:19:27.1498980Z","1043b35ca236c6bc7d3f2459c811956d3514e3694471ced91d65420b853e2ee6","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Qsub12web-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1373","2026-09-14T21:19:27.5343001Z","be3de138882acca6c9b913e405cc866e5724e9bc3a505a0d7a14390e70adf599","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Qsub4all-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1238","2026-09-14T21:19:27.3416300Z","0f6043ffa3d3580c6d13b30a7e3c6335e63f3d32b0adc294ea042096865d0c90","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Qsub4web-2021.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1259","2026-09-14T21:19:27.7261334Z","6084ad3cee414d02f139430b00aabfa6ef9ddcf5058dcd140375e543fc18f000","",".jpg" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-rr2i-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","988","2026-09-14T21:19:21.7797341Z","2182d395986471387432eac0e3e3eda86e8f050e13ef88e082764e35fbf0b6ef","dup-0015",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-rr4s-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1018","2026-09-14T21:19:21.3341764Z","f5baab13c7def5f6d5513a4407164fb7ba622c111708d998ab460ff4d1c5ec2a","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-scale1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2863","2026-09-14T21:19:23.2909272Z","e3ea1d2f94e795cb4b929a07ee77d592a8f0964355ff544d1707bb2316ccab50","dup-0100",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-scale2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2825","2026-09-14T21:19:23.4847921Z","688c283ee88618d6afc84f1c6d9e4b2bdbc85e405c66a144c911303647086c34","dup-0050",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-1fig1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1490","2026-09-14T21:19:23.6805629Z","481989146bc77fbf6ff7e1efb21cd04e1f257f967bb6b0aaf81a19a8e35c01b3","dup-0033",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-1fig2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","228","2026-09-14T21:19:23.8803005Z","42e837e6cdb91742fb5d97560e8029aa3500c9c988003124aef029b21d02d0f2","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq1-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1837","2026-09-14T21:19:24.1031924Z","0b56ec123ed2d2ccd0ff748032387e8dc97bc02c96c25723f957fe6eccb62691","dup-0006",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq2-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1470","2026-09-14T21:19:24.2966239Z","9e4b5b9c5c8c05a45f225b6451c2f96957d151a1ac6f2d1cf68d4230130fc229","dup-0077",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq3-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1003","2026-09-14T21:19:24.4901695Z","9a2a37475a9d4701aa36ded0b016a1805099b873188aacfb1a7bb407a318b654","dup-0074",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq4-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1593","2026-09-14T21:19:24.6852349Z","4875b28fa7c7faa708b78b8528ebcac5d46f6bad3e993104c3653507e514981c","dup-0034",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq5-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","976","2026-09-14T21:19:24.8781745Z","3423023e7f181fede528b403dda90ce05070349c8b3da0368a1a2f07f0955a74","dup-0022",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq7-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1889","2026-09-14T21:19:19.5344194Z","0fb73c69129db212caa16866a86d83f4b72956eb8bf114e9fbc011adcb1310e5","dup-0008",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq9-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1112","2026-09-14T21:19:25.2649042Z","e4682209bd16d6ad4ba7a962f4ed5f31ad5f77bc2fd06b7cc807ed50cfed3024","dup-0102",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-usubk-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","926","2026-09-14T21:19:17.0244183Z","4e6707c3a177781bd3ad766ad32fbc2aaa7730fe6247be888a049169a70ddca9","dup-0037",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-wsubhh-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","950","2026-09-14T21:19:21.0534663Z","1f0b5d5c9cd928fdc547335a2b4f88ba29806b50ecc89ed847db64f33913a71e","",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-wsubi-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","901","2026-09-14T21:19:21.5855878Z","bca8c0463a291f9ec3784d8d987a7113f450bab00cf3020e6fff8a85f6258226","dup-0081",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xbar-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","873","2026-09-14T21:19:25.0718670Z","21d67cd9e0b9e39f95aa44e1c943ed5411a7daf8b5cc0f8905c2b4ade5e5c129","dup-0017",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsuba-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","922","2026-09-14T21:19:22.9350634Z","527b35ef71e55624acdb671f13ba4d950395cab04647d3dc6a3fada3a513cd7b","dup-0039",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubk-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","933","2026-09-14T21:19:22.6058960Z","77898bc11d1da6a8ff4b8564f32c1fa5a31e4f995d19b16f934d1d4aa9f2e236","dup-0059",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubm-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","937","2026-09-14T21:19:22.8508099Z","6e441f94363e861f9c2e4a284e9165cf2d99acd805bff53b91051805b41305f9","dup-0055",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubs-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","911","2026-09-14T21:19:22.7686014Z","fbd2ca68dad43e6550723d22f8c793bec441b28e1f8edf0613bbb3d323b22004","dup-0114",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubw-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","926","2026-09-14T21:19:22.6876341Z","8771e4ccad807828b9dee8032f1bb522eb3ca0407ffb9c00d8975d7d177ae2d2","dup-0065",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Yhatsubd-2021.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","956","2026-09-14T21:19:18.7051181Z","42ef97b57b701d02520ba82075bcf6355636c8de21ec782ea14d69b7f08b4a61","dup-0030",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\ruffle.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","381452","2026-09-14T21:19:15.7444705Z","7073661b172eb0b4abdac0de7431d86cfe971a6333d0c757e2b341fabdcd2944","dup-0057",".下载" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\scaltoc.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","733","2026-09-14T21:19:15.8930549Z","2eef5cc7a05ca41b5bb0d6e0525ac387609ab91f2548b37653e1a5d8341eac57","dup-0019",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\scaltop.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","777","2026-09-14T21:19:34.8076874Z","19a790cc1351650972148416e59edc7be277b8d9bf5c6244c8338046224810a9","dup-0011",".gif" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\webready-html-content.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","9184","2026-09-14T21:19:15.8570238Z","89d326a3f0096a3a9afaa1972f2dad91e50128508370e39d01cbe03ae91bf97a","",".css" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\wombat.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","106858","2026-09-14T21:19:15.7063509Z","9ccad4ebb5861fe1825c03c1debc52d1014a1b006edb66ef66ff8575874b0a20","dup-0075",".下载" +"Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions.html","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1373799","2026-09-14T21:19:34.8942845Z","7d9a19032a2138e9f4910f25e5bb88af15a237bd69cbcbd74eba7f794779243f","",".html" +"Dataset\NSDUH\2021NSDUHmrbCAISpecs011321.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2574823","2026-09-14T21:18:11.7663614Z","c9686ef6e7433a759d6c9c205f5ca2bd9162c515909ca44c35c1f658bad87013","",".pdf" +"Dataset\NSDUH\2021NSDUHMRBWebSpecs101422.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2257130","2026-09-14T21:18:20.5764305Z","14a57e143933d92e8c41bfd6884ffb119c5ae5598b1d71de77fa3e9940d23b07","",".pdf" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\athena.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","15155","2026-09-14T21:20:45.5835271Z","665abecfab1ee7f13557ef74a4a92aba5c7474cbe9811c164ff13a3e9df9151e","dup-0048",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\banner-styles.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","10252","2026-09-14T21:20:45.7356485Z","3e2bb12dd78408c9371fb23c028385d4b4319f32951f23025eacad7c3f9b157a","dup-0027",".css" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\bundle-playback.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","30170","2026-09-14T21:20:45.6247984Z","9dee864e40cc6555aec50ba166bc68a222258c1c156b44ee277293ef0b63e87c","dup-0076",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\destination","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","426572","2026-09-14T21:20:45.4995157Z","68b9c370f183ce4c9bb28aa8800c07bd64044b2ea8f1688685b85b66f6bc4658","dup-0051","" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\embed.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2309","2026-09-14T21:20:49.3926269Z","239c5dafc7b2b4eeb1aec36a55755964dd2216950891028913521569dfb83509","dup-0018",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\generic1754575171027.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","308256","2026-09-14T21:20:49.4272516Z","80c09cc2d3e420e69131f936f502b785db47239ba70637558ba6dbe17bada06d","dup-0063",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\gtm.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","436252","2026-09-14T21:20:45.5463285Z","0ac7033dbcfe094acfa62d5bdba98331f86f93ed6b8c25ec57447b132720e3d6","dup-0005",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\iconochive.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5649","2026-09-14T21:20:45.7746341Z","103585bfb64e2fef8a7c9db5797cc308c484b7b71f7836bd7038132327c08175","dup-0009",".css" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\iframe_api","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2445","2026-09-14T21:20:45.4270196Z","1ab329c76ab38646006af304774833ccfa705ab892a685c9890a8aacd193fe88","","" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","424370","2026-09-14T21:20:45.3910682Z","7b25468601ab94cbc74a679f0deac34aa15e899e02f018e7920fa683165e0a94","dup-0062","" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(1)","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","394959","2026-09-14T21:20:45.4641290Z","6d6ba88231ac341072536fdf5a70d052e96d4401d85bf24fbacfdeab144c81a4","dup-0054","" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(2)","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","393668","2026-09-14T21:20:45.8458644Z","ccb71bfb0b0c494f7ba3758f5fb934a47e440cfb4541248e20faa6b1c7f17673","dup-0090","" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-csubk-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","529","2026-09-14T21:20:46.0614471Z","a499bb2e5a1b829ae1f580ec8c9d010889f649139398024cb8a320b81aee2c3b","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-dsubk-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","574","2026-09-14T21:20:45.9220760Z","748a6779277a38ed0c6ef1585e4486c9cc024502a4abcafb6073f567dad277dc","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq2-1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","4043","2026-09-14T21:20:46.0250300Z","82ca14c31b292bea865c00585f1b72b0e1e0e7bf0def7c2144b942e9cd8d9ef4","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq2-2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1513","2026-09-14T21:20:46.2962215Z","c1a26f26fa9ce2b9af39265ab53493fb4263777ff15b279ddee071d184d1fc0c","dup-0085",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq2-3-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2642","2026-09-14T21:20:46.4050700Z","f0cf00e6f2a7493e9f9d161768ce1f123c8ef18d457f1060502ebfd597973dfe","dup-0108",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1265","2026-09-14T21:20:46.6184351Z","596ab27151143cb1419c77c8440221c8e5a09cc029aeea48b79ff0663260b404","dup-0042",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-10-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1772","2026-09-14T21:20:47.5739092Z","e530d5e0c520fcddafebb81e53b18e75595300697d9d17b2181b363725a31fd4","dup-0103",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-11-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1276","2026-09-14T21:20:47.6102426Z","e42219b79b5d90c497c9ea0f911ca214a7d659adfd54e14761741ccf5c10a5f1","dup-0101",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-12-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5613","2026-09-14T21:20:47.6853004Z","60d29b08d2167bccdc14bcfadf5cbbc1d65a98b6d19921bc05e645e2aada9dd7","dup-0046",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1536","2026-09-14T21:20:46.7271752Z","0e240856a2a5d3d65d1fedc49f577af57fabcad853dabd5221162cbc768fe058","dup-0007",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-3-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1792","2026-09-14T21:20:46.8006311Z","fad868e6536d6ac34775bda80a231f4c1483cb2fa1402b04bcbcfb3c912ddf80","dup-0113",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-4-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1917","2026-09-14T21:20:46.8361661Z","49a2674055eb6b85af5a61b08119c17d8aaeeace3e924cb6f71d4d5d4d8e44ec","dup-0035",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-5-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2131","2026-09-14T21:20:47.0754280Z","339a331e6f1d38d6363b34f37d1ab8b6631d7abb68787d7b4b0efbc218901e61","dup-0021",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-6-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2612","2026-09-14T21:20:47.2916415Z","cf7a4f9a7cbad27489fa1aa51bc49f8eede9fc1747c60c329cff9c28555c2369","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-7-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2800","2026-09-14T21:20:47.3608680Z","847f04b302e9f1558b30e60f49574f74c2433565e9be4dc4d3d3c787c1d708fd","dup-0064",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-8-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2469","2026-09-14T21:20:47.4327957Z","35083abcbc5a1693cec76ea9c30cd2c530c9f72c1251bc34fd2f13d49ca4d628","dup-0023",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-9-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1858","2026-09-14T21:20:47.4683549Z","ff650ba8a349cf277db420ee608cb8a3613799887a2092cc67189faa9766beb3","dup-0117",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-external-link-2022.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","8042","2026-09-14T21:20:48.6237296Z","924b5323d05ebea976217e0262ccc2eda508c93ca20e226f8221dfc96b97490f","dup-0069",".jpg" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-1-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","78430","2026-09-14T21:20:46.4768445Z","5c3074afef16d88cbdb4f68d58a4baa6ad4e8a775b3c7f965148317e0d83d437","",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-2-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","75904","2026-09-14T21:20:46.5118809Z","f22210277b8702c0806b86fd5663eccebedfebf522a73fb5d3717092b1d5d160","dup-0109",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-3-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","42150","2026-09-14T21:20:46.5475362Z","38dba3bac440756caeea530384d3507ce31323afbd25d1fe778922ef0580a44a","",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig3-1-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","55149","2026-09-14T21:20:48.4159920Z","d43f7d1121d840b748f5c527a0441d75b00aa7f04bcbdfebfb644ecbbcdb439f","dup-0096",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-1-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","188778","2026-09-14T21:20:48.4501945Z","9a0ebe56bd05d559cf650ebfb2a3caefb6834d956629db1ccd82e0041e78643a","dup-0073",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-2-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","147838","2026-09-14T21:20:48.4850951Z","d47547fafd8532e68f5925ba7a192ae5fcb818fd2617e6e2b199706783094d31","",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-3-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","122634","2026-09-14T21:20:48.5189365Z","d7cc2b15691d6bf97961e4a58a2faed9d4e8ef3f07accea8036a2e244ac01f75","dup-0097",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-4-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","84704","2026-09-14T21:20:48.5535776Z","cf6b1676e8ae87f005370dd49a668cc73ee77b2377de1f0ead7394cabc80ddfb","dup-0093",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-5-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","79414","2026-09-14T21:20:48.5891102Z","c8e595f39697c34efdeaf61a157c04ad0b602c008d61200032b314e5c99d29ad","dup-0087",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig5-1-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","18139","2026-09-14T21:20:48.6570185Z","135466ab8f1f105d3791d5e8c21e64b5b01c9704326c95782bb9054ab0fa438e","",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig5-2-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","17308","2026-09-14T21:20:48.6897092Z","4455f833cae75fb1cdfdb0e6e8a834989bfac80d8dcc8715098d9a40978c5663","",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig5-3-2022.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","24854","2026-09-14T21:20:48.7298692Z","e6468f3b68e4caf0c03c720100e4e73c6b67c9a11e465967b89421e9627de0ee","",".png" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn-phat-2022.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","872","2026-09-14T21:20:49.2194086Z","c823238c9ec02ea77805a9768e31c9c226f30de64cb3dd19d33d884af8f331ca","dup-0086",".jpg" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","631","2026-09-14T21:20:48.7622815Z","f619f717c4e86e2c90a774800ab46f05a54b6ddaa0733b33475ba4b1b43c31b8","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","897","2026-09-14T21:20:48.7965301Z","597757dbb80e6ccd42d3ca670bd0f71c6b7c68c0b764adebf968c27f58112c02","dup-0043",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq3-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","869","2026-09-14T21:20:48.8296531Z","450816306793421446f9435891877000a6dbc15360a372b45561c9c9ef0a26c4","dup-0031",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq4-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1265","2026-09-14T21:20:48.8628707Z","d28ec943c71363acf10f4732032d6ebf44012b9beb75c9314d4117e9c83ef986","dup-0095",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","535","2026-09-14T21:20:48.9310391Z","db0f5efc95d43f5c19b6ce4e2ba0e91a3dd9e7f562b4128fac34292a908a47fe","dup-0098",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq10-2022.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1041","2026-09-14T21:20:49.2579030Z","fa49e0a726fa9fc6ebf24a73e9db78d59a5af6032ebd489ffe7a626f4bf69c8e","dup-0112",".jpg" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","903","2026-09-14T21:20:48.9671411Z","21a8f20a0906b874d54ab2d6646a2074eab2b98cdf60c8e63864c838ef6d9ba6","dup-0016",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq3-2022.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1275","2026-09-14T21:20:49.0011621Z","69f1253be0687d7008944fbcee3fb91c37019a9395b2ea1f5d39b4a7305731e5","dup-0052",".jpg" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq4-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","437","2026-09-14T21:20:49.0386735Z","cdf47fedf2b7b4073aa7e39c5daeff00b0808828765250cffa66229a287920f0","dup-0091",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq5-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","802","2026-09-14T21:20:49.0734620Z","1ac738544eac8f12e25901b4b3329a33c0d43621e1bd1c19cac8308cab4b5036","dup-0012",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq6-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","766","2026-09-14T21:20:49.1104652Z","203361feb1bc99ae252d4c2b36b61a6c0c30a0dc5fa58510e0291476d6a19bb2","dup-0014",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq7-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","414","2026-09-14T21:20:49.1478896Z","c0f5d2504ed73ae770b7c654699bb366f5aaf526ba5aed43665f7fa466e059f4","dup-0083",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq8-2022.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1231","2026-09-14T21:20:49.1847243Z","8ce31d3a392152bae713a5e79f6abefe514700aa0af5944b2239505448ef4dc1","dup-0067",".jpg" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn38eq1-2022.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1527","2026-09-14T21:20:49.2923447Z","73793e6c942061937a5ac3d488d30f73b5ada719b085e1a055dbcbd1b9f95c6b","dup-0058",".jpg" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftnnhatsubd-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","598","2026-09-14T21:20:48.8976419Z","3c4be4da1392e4cb5047d521931630bef262bf0d1f30987691c4e58aeeed265f","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1282","2026-09-14T21:20:45.9570243Z","f074040242c438858e30da265c6228bf3c350525619451aab82ecc01cd7a6f2a","dup-0107",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq10-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","983","2026-09-14T21:20:46.9730103Z","d0919a26b36d1eedcd88ca5197ee81573356398c5b1b380201d266a9d5e486c8","dup-0094",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq11-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","953","2026-09-14T21:20:47.0074983Z","9293a9601be0f0eff0ec0112f37d8855558b6585925a4a964f6773ecb64b55ad","dup-0070",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq12-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1199","2026-09-14T21:20:47.0419567Z","4a926b78c739bcaab11ad68555c70d6695259bf744839adf2b07a860a7203ef4","dup-0036",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq13-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1091","2026-09-14T21:20:47.1844614Z","0715719ece33268d990c0cb34b72cdd2150c57efbbea5424eeb6baa7c4efa22b","dup-0002",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq14-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1101","2026-09-14T21:20:47.2213932Z","e784243bf6a55e34276ad66aaf7f43b45eda62069d3dc6ca48270722dd6c6bd5","dup-0105",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq15-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1199","2026-09-14T21:20:47.2569319Z","409daef8e29c891c694a86c664437f1ea8781eaa5777a89d03494a41c6d61185","dup-0028",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq16-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1290","2026-09-14T21:20:47.6472563Z","42627d09b2dc86c7c28ef50ac737a98dcd813b28952fee693bf85be4adb1c988","dup-0029",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq17-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","988","2026-09-14T21:20:47.9950387Z","79c6505f4995e2f33eb034fc0bcc8cef598c39141cade6a3a874577c84befc68","dup-0060",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1194","2026-09-14T21:20:45.9923201Z","fd4c573f13eedf55b36046e4ae598f8b241b9545c1dced74848a36b6ee7bd1e8","dup-0115",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq3-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1269","2026-09-14T21:20:46.1016809Z","76e98eb5cc44864f2a4d6515c59bc5073462745c065f0ecfe3793298fbc5c0b7","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq4-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1667","2026-09-14T21:20:46.1421718Z","bf37cbc1012fda70aef06a94028b6c22a02176c6c3aee405f237dcedfe6d1ac3","dup-0082",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq5-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","918","2026-09-14T21:20:46.3334022Z","ff297bf0264f1a1f1d7b034725efd3b7262aecfec25cdbe8716f15ddb1930399","dup-0116",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq6-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1073","2026-09-14T21:20:46.3705726Z","92d4b8d624d68620f2e7ae89c2d1624ae2cc7747042c05b34af228760ad5362b","dup-0071",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq7-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1418","2026-09-14T21:20:46.4411243Z","6eee51b609aabb4139f1aa371817887d25d510570dc1b221fa6aae3b6ac8a7ff","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq8-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1245","2026-09-14T21:20:46.9060182Z","96aa657e3e326408978d94f87714bc123fac1dc6e01fa8c0857d9865844a38cb","dup-0072",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq9-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","991","2026-09-14T21:20:46.9397416Z","01981e84ec539c1fe4420cde4391b081b2d66ee046895b9546f704e77e94d96a","dup-0001",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-lambda-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","884","2026-09-14T21:20:46.2593377Z","37a1da8f93895852d3ae3c552dc561b2912222960a9b0d71d9bc55c094d804c0","dup-0025",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-lsubk-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","547","2026-09-14T21:20:46.1801085Z","55aee491912259e0559b23d0a8f4a8b899833b063aa8c91b191bf5ca288ec10a","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-nhatsubd-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","994","2026-09-14T21:20:46.6899325Z","8e65964a76db06d3c96b8438a1d898213618172cfc7518b72d0cb0e82476a27f","dup-0068",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phat-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","909","2026-09-14T21:20:46.7658425Z","50d77b521de3b52b8754b2e73daaf6b55af10bcaf592c35a1cfffe83d437454c","dup-0038",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phatsub1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","925","2026-09-14T21:20:47.1081347Z","35733edcafc8c589f74ea866986d875df90b17966b662c6e379bade0cc40b1b9","dup-0024",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phatsub2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","940","2026-09-14T21:20:47.1439862Z","cca276b0082dfd84c3478b8545fde90c3d9983de8fb0a29361a83c9e580ed25c","dup-0089",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phatsubd-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","960","2026-09-14T21:20:46.5833421Z","649072b10cb562e3f99f27e8e3fa4d8e19842daccef82f145468aeeff4f7d5ca","dup-0047",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pi-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","857","2026-09-14T21:20:47.7536188Z","3287daec529ef279343216807a021e7362c6c17b6f6469031615e1f8e376d06b","dup-0020",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pihat-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","872","2026-09-14T21:20:47.7190961Z","59aa62ae2980eb136f3ea3341a8a8fd6e192fca47662adbb128394a7c178cb3c","dup-0044",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pisub0-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","902","2026-09-14T21:20:47.9608579Z","3ad5a34afe7d14782bd3b41a665da67fe225d719f2f4631c2c8015350a0f8cfb","dup-0026",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-rr2i-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","988","2026-09-14T21:20:47.5399638Z","2182d395986471387432eac0e3e3eda86e8f050e13ef88e082764e35fbf0b6ef","dup-0015",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-rr4s-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","700","2026-09-14T21:20:47.3951579Z","202c8a6fba4fa284901bf3611f34cff20640862aa50e8d637f32224cc22839a8","",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2863","2026-09-14T21:20:48.0307332Z","e3ea1d2f94e795cb4b929a07ee77d592a8f0964355ff544d1707bb2316ccab50","dup-0100",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2825","2026-09-14T21:20:48.0653694Z","688c283ee88618d6afc84f1c6d9e4b2bdbc85e405c66a144c911303647086c34","dup-0050",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1490","2026-09-14T21:20:48.0995727Z","481989146bc77fbf6ff7e1efb21cd04e1f257f967bb6b0aaf81a19a8e35c01b3","dup-0033",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","551","2026-09-14T21:20:48.1354761Z","ab90b370a9978d2d903dd4713a3eb1d621a4626910b17c0973a3e3a856719a61","dup-0078",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq1-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1837","2026-09-14T21:20:48.1722424Z","0b56ec123ed2d2ccd0ff748032387e8dc97bc02c96c25723f957fe6eccb62691","dup-0006",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq2-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1470","2026-09-14T21:20:48.2066730Z","9e4b5b9c5c8c05a45f225b6451c2f96957d151a1ac6f2d1cf68d4230130fc229","dup-0077",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq3-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1003","2026-09-14T21:20:48.2420725Z","9a2a37475a9d4701aa36ded0b016a1805099b873188aacfb1a7bb407a318b654","dup-0074",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq4-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1593","2026-09-14T21:20:48.2765123Z","4875b28fa7c7faa708b78b8528ebcac5d46f6bad3e993104c3653507e514981c","dup-0034",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq5-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","976","2026-09-14T21:20:48.3128977Z","3423023e7f181fede528b403dda90ce05070349c8b3da0368a1a2f07f0955a74","dup-0022",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq7-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1889","2026-09-14T21:20:46.8722900Z","0fb73c69129db212caa16866a86d83f4b72956eb8bf114e9fbc011adcb1310e5","dup-0008",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq9-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1112","2026-09-14T21:20:48.3816056Z","e4682209bd16d6ad4ba7a962f4ed5f31ad5f77bc2fd06b7cc807ed50cfed3024","dup-0102",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-usubk-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","926","2026-09-14T21:20:46.2195113Z","4e6707c3a177781bd3ad766ad32fbc2aaa7730fe6247be888a049169a70ddca9","dup-0037",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubdu-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","622","2026-09-14T21:20:47.3259398Z","c19b7f8f1082f628ba7318eb79433e8c2de2ed37faec850271e28d3a5ad2b146","dup-0084",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubi-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","901","2026-09-14T21:20:47.5040908Z","bca8c0463a291f9ec3784d8d987a7113f450bab00cf3020e6fff8a85f6258226","dup-0081",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xbar-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","873","2026-09-14T21:20:48.3483045Z","21d67cd9e0b9e39f95aa44e1c943ed5411a7daf8b5cc0f8905c2b4ade5e5c129","dup-0017",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsuba-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","922","2026-09-14T21:20:47.9269444Z","527b35ef71e55624acdb671f13ba4d950395cab04647d3dc6a3fada3a513cd7b","dup-0039",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubk-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","933","2026-09-14T21:20:47.7887960Z","77898bc11d1da6a8ff4b8564f32c1fa5a31e4f995d19b16f934d1d4aa9f2e236","dup-0059",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubm-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","937","2026-09-14T21:20:47.8931993Z","6e441f94363e861f9c2e4a284e9165cf2d99acd805bff53b91051805b41305f9","dup-0055",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubs-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","911","2026-09-14T21:20:47.8600643Z","fbd2ca68dad43e6550723d22f8c793bec441b28e1f8edf0613bbb3d323b22004","dup-0114",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubw-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","926","2026-09-14T21:20:47.8239826Z","8771e4ccad807828b9dee8032f1bb522eb3ca0407ffb9c00d8975d7d177ae2d2","dup-0065",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-Yhatsubd-2022.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","956","2026-09-14T21:20:46.6544587Z","42ef97b57b701d02520ba82075bcf6355636c8de21ec782ea14d69b7f08b4a61","dup-0030",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\ruffle.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","381452","2026-09-14T21:20:45.6993340Z","7073661b172eb0b4abdac0de7431d86cfe971a6333d0c757e2b341fabdcd2944","dup-0057",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltoc.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","733","2026-09-14T21:20:45.8839443Z","2eef5cc7a05ca41b5bb0d6e0525ac387609ab91f2548b37653e1a5d8341eac57","dup-0019",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltop.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","777","2026-09-14T21:20:49.3251367Z","19a790cc1351650972148416e59edc7be277b8d9bf5c6244c8338046224810a9","dup-0011",".gif" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\Universal-Federated-Analytics-Min.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","31049","2026-09-14T21:20:49.3591798Z","6a694e7f056ca7141599d61f72012477ff8e343b59a5f26a0daae52f9a11307c","dup-0053",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\webready-html-content.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","9169","2026-09-14T21:20:45.8093452Z","7ae98628f66a24ef8f450fbd4b6f609b0c1dcdca4467075dbc6c7dba01604e9a","dup-0061",".css" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\wombat.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","106858","2026-09-14T21:20:45.6616054Z","9ccad4ebb5861fe1825c03c1debc52d1014a1b006edb66ef66ff8575874b0a20","dup-0075",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\www-widgetapi.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","31771","2026-09-14T21:20:45.3559036Z","dae87f44799cf75e860a60a569611cfd7e2c1789bccb9f4b0f7155d836bd3c4c","",".下载" +"Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions.html","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1309600","2026-09-14T21:20:49.4719022Z","3d2c11244f5ffe582a997bb20278b2e9d76e5c1f76f6ed98397449216fb4b65f","",".html" +"Dataset\NSDUH\2022NSDUHmrbCAISpecs070722.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","3519542","2026-09-14T21:20:14.1535022Z","ee055165366fdfa33f62150281f81c481da2984a0c64b053cd487ca9bc55e47a","dup-0106",".pdf" +"Dataset\NSDUH\2022NSDUHmrbSampleDesign04032023.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","23690567","2026-09-14T21:20:34.0699545Z","94b24a747497bcd2166d5a5553aa7e2cdafc06869d7a9e7fc3019111131699fe","",".pdf" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\athena.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","15155","2026-09-14T21:22:14.5997907Z","665abecfab1ee7f13557ef74a4a92aba5c7474cbe9811c164ff13a3e9df9151e","dup-0048",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\banner-styles.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","10252","2026-09-14T21:22:14.7933204Z","3e2bb12dd78408c9371fb23c028385d4b4319f32951f23025eacad7c3f9b157a","dup-0027",".css" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\bundle-playback.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","30170","2026-09-14T21:22:14.6489774Z","9dee864e40cc6555aec50ba166bc68a222258c1c156b44ee277293ef0b63e87c","dup-0076",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\destination","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","424412","2026-09-14T21:22:14.3491455Z","a7eb3ab091c8dbdeb4f2a1c9edb1d833bf26ec11b043576ae5cee46d48ac209e","","" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\destination(1)","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","426572","2026-09-14T21:22:14.4843586Z","68b9c370f183ce4c9bb28aa8800c07bd64044b2ea8f1688685b85b66f6bc4658","dup-0051","" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\embed.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2309","2026-09-14T21:22:17.9849304Z","239c5dafc7b2b4eeb1aec36a55755964dd2216950891028913521569dfb83509","dup-0018",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\generic1754575171027.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","308256","2026-09-14T21:22:18.0273038Z","80c09cc2d3e420e69131f936f502b785db47239ba70637558ba6dbe17bada06d","dup-0063",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\gtm.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","436252","2026-09-14T21:22:14.5522748Z","0ac7033dbcfe094acfa62d5bdba98331f86f93ed6b8c25ec57447b132720e3d6","dup-0005",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\iconochive.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5649","2026-09-14T21:22:14.8401604Z","103585bfb64e2fef8a7c9db5797cc308c484b7b71f7836bd7038132327c08175","dup-0009",".css" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\iframe_api","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2447","2026-09-14T21:22:14.3918254Z","8ebcda70794c452281a8e61ac170147e23b1d544f7d13a2b61438f38a2d79790","","" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","424370","2026-09-14T21:22:14.3051241Z","7b25468601ab94cbc74a679f0deac34aa15e899e02f018e7920fa683165e0a94","dup-0062","" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(1)","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","394959","2026-09-14T21:22:14.4404867Z","6d6ba88231ac341072536fdf5a70d052e96d4401d85bf24fbacfdeab144c81a4","dup-0054","" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(2)","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","393668","2026-09-14T21:22:14.9273223Z","ccb71bfb0b0c494f7ba3758f5fb934a47e440cfb4541248e20faa6b1c7f17673","dup-0090","" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1792","2026-09-14T21:22:15.7723950Z","fad868e6536d6ac34775bda80a231f4c1483cb2fa1402b04bcbcfb3c912ddf80","dup-0113",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-2-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1917","2026-09-14T21:22:15.8182712Z","49a2674055eb6b85af5a61b08119c17d8aaeeace3e924cb6f71d4d5d4d8e44ec","dup-0035",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-3-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5613","2026-09-14T21:22:16.5075738Z","60d29b08d2167bccdc14bcfadf5cbbc1d65a98b6d19921bc05e645e2aada9dd7","dup-0046",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-4-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1858","2026-09-14T21:22:16.2599206Z","ff650ba8a349cf277db420ee608cb8a3613799887a2092cc67189faa9766beb3","dup-0117",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-external-link-2023.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","8042","2026-09-14T21:22:17.3628203Z","924b5323d05ebea976217e0262ccc2eda508c93ca20e226f8221dfc96b97490f","dup-0069",".jpg" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-1-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","85326","2026-09-14T21:22:15.0239792Z","ee8854247f3812018e21f7f7faed0691c237590f0d62234ea7c0a9c8d52a1a54","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-2-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","93233","2026-09-14T21:22:15.0721672Z","6e812a8219b990434c901917154689846124bfb2b91c38d185de729f7f0be9df","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-3-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","45236","2026-09-14T21:22:15.1225111Z","49e93762e843cbd58f282a031b7a7437253b12adf2665fc7ce18d678821036ae","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-4-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","75904","2026-09-14T21:22:15.1615705Z","f22210277b8702c0806b86fd5663eccebedfebf522a73fb5d3717092b1d5d160","dup-0109",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig3-1-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","55149","2026-09-14T21:22:16.1131390Z","d43f7d1121d840b748f5c527a0441d75b00aa7f04bcbdfebfb644ecbbcdb439f","dup-0096",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig3-2-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","157300","2026-09-14T21:22:16.3596767Z","954a6815b78fe9d2c4aaf8b58932673ad8d8aed96ee2ed822dc2955217b8d757","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig3-3-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","142615","2026-09-14T21:22:16.4061036Z","65c15eaf174a6055e5bf1f0bdb78633d9fac6d640885f185c4a10d63164a5bdc","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-1-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","188778","2026-09-14T21:22:17.0253150Z","9a0ebe56bd05d559cf650ebfb2a3caefb6834d956629db1ccd82e0041e78643a","dup-0073",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-2-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","141406","2026-09-14T21:22:17.0660226Z","cfcb358fb83268646715b172e5bb6ce396da9aa5c350da7d28c8ce13c1ab7dc0","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-3-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","161878","2026-09-14T21:22:17.1097285Z","0afceb3b93f2a15ba2232d4b00846fc57f2953708dc28cd345c9e814e6a7bf80","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-4-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","122634","2026-09-14T21:22:17.1517109Z","d7cc2b15691d6bf97961e4a58a2faed9d4e8ef3f07accea8036a2e244ac01f75","dup-0097",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-5-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","84704","2026-09-14T21:22:17.1971556Z","cf6b1676e8ae87f005370dd49a668cc73ee77b2377de1f0ead7394cabc80ddfb","dup-0093",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-6-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","79414","2026-09-14T21:22:17.2413878Z","c8e595f39697c34efdeaf61a157c04ad0b602c008d61200032b314e5c99d29ad","dup-0087",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-7-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","214247","2026-09-14T21:22:17.2848612Z","adcfb79e6858ec35b824a78eaca8ddef5157302bed1bf2521f49afd32d00fe3c","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-8-2023.png","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","144588","2026-09-14T21:22:17.3235060Z","930d541c0257df2c2fac0a0e319f250c1464d1b601f5f02c483465a2f81cf4be","",".png" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn-phat-2023.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","872","2026-09-14T21:22:17.7740055Z","c823238c9ec02ea77805a9768e31c9c226f30de64cb3dd19d33d884af8f331ca","dup-0086",".jpg" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","535","2026-09-14T21:22:17.4088501Z","db0f5efc95d43f5c19b6ce4e2ba0e91a3dd9e7f562b4128fac34292a908a47fe","dup-0098",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq10-2023.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1041","2026-09-14T21:22:17.8160304Z","fa49e0a726fa9fc6ebf24a73e9db78d59a5af6032ebd489ffe7a626f4bf69c8e","dup-0112",".jpg" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq2-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","903","2026-09-14T21:22:17.4597370Z","21a8f20a0906b874d54ab2d6646a2074eab2b98cdf60c8e63864c838ef6d9ba6","dup-0016",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq3-2023.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1275","2026-09-14T21:22:17.5041874Z","69f1253be0687d7008944fbcee3fb91c37019a9395b2ea1f5d39b4a7305731e5","dup-0052",".jpg" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq4-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","437","2026-09-14T21:22:17.5468556Z","cdf47fedf2b7b4073aa7e39c5daeff00b0808828765250cffa66229a287920f0","dup-0091",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq5-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","802","2026-09-14T21:22:17.5957039Z","1ac738544eac8f12e25901b4b3329a33c0d43621e1bd1c19cac8308cab4b5036","dup-0012",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq6-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","764","2026-09-14T21:22:17.6370585Z","3bf5e6900f928e503a715ffd98639c46d3a5e7ae98a8315411eb36cd9e2c9701","",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq7-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","414","2026-09-14T21:22:17.6793662Z","c0f5d2504ed73ae770b7c654699bb366f5aaf526ba5aed43665f7fa466e059f4","dup-0083",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq8-2023.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1231","2026-09-14T21:22:17.7297939Z","8ce31d3a392152bae713a5e79f6abefe514700aa0af5944b2239505448ef4dc1","dup-0067",".jpg" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn38eq1-2023.jpg","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1527","2026-09-14T21:22:17.8570267Z","73793e6c942061937a5ac3d488d30f73b5ada719b085e1a055dbcbd1b9f95c6b","dup-0058",".jpg" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1245","2026-09-14T21:22:15.8753398Z","96aa657e3e326408978d94f87714bc123fac1dc6e01fa8c0857d9865844a38cb","dup-0072",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq2-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","991","2026-09-14T21:22:15.9263663Z","01981e84ec539c1fe4420cde4391b081b2d66ee046895b9546f704e77e94d96a","dup-0001",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq3-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","983","2026-09-14T21:22:15.9708625Z","d0919a26b36d1eedcd88ca5197ee81573356398c5b1b380201d266a9d5e486c8","dup-0094",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq4-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","953","2026-09-14T21:22:16.0210872Z","9293a9601be0f0eff0ec0112f37d8855558b6585925a4a964f6773ecb64b55ad","dup-0070",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq5-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1199","2026-09-14T21:22:16.0674168Z","4a926b78c739bcaab11ad68555c70d6695259bf744839adf2b07a860a7203ef4","dup-0036",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq6-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1290","2026-09-14T21:22:16.4557173Z","42627d09b2dc86c7c28ef50ac737a98dcd813b28952fee693bf85be4adb1c988","dup-0029",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq7-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","988","2026-09-14T21:22:16.8977772Z","79c6505f4995e2f33eb034fc0bcc8cef598c39141cade6a3a874577c84befc68","dup-0060",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phat-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","909","2026-09-14T21:22:15.3174491Z","50d77b521de3b52b8754b2e73daaf6b55af10bcaf592c35a1cfffe83d437454c","dup-0038",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pi-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","857","2026-09-14T21:22:16.5993131Z","3287daec529ef279343216807a021e7362c6c17b6f6469031615e1f8e376d06b","dup-0020",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pihat-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","872","2026-09-14T21:22:16.5548464Z","59aa62ae2980eb136f3ea3341a8a8fd6e192fca47662adbb128394a7c178cb3c","dup-0044",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pisub0-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","902","2026-09-14T21:22:16.8551854Z","3ad5a34afe7d14782bd3b41a665da67fe225d719f2f4631c2c8015350a0f8cfb","dup-0026",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2863","2026-09-14T21:22:16.9428728Z","e3ea1d2f94e795cb4b929a07ee77d592a8f0964355ff544d1707bb2316ccab50","dup-0100",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale2-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2825","2026-09-14T21:22:16.9827174Z","688c283ee88618d6afc84f1c6d9e4b2bdbc85e405c66a144c911303647086c34","dup-0050",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1490","2026-09-14T21:22:15.2083050Z","481989146bc77fbf6ff7e1efb21cd04e1f257f967bb6b0aaf81a19a8e35c01b3","dup-0033",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig2-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","551","2026-09-14T21:22:15.2565843Z","ab90b370a9978d2d903dd4713a3eb1d621a4626910b17c0973a3e3a856719a61","dup-0078",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1837","2026-09-14T21:22:15.3639725Z","0b56ec123ed2d2ccd0ff748032387e8dc97bc02c96c25723f957fe6eccb62691","dup-0006",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq2-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1470","2026-09-14T21:22:15.4145796Z","9e4b5b9c5c8c05a45f225b6451c2f96957d151a1ac6f2d1cf68d4230130fc229","dup-0077",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq3-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1003","2026-09-14T21:22:15.4652551Z","9a2a37475a9d4701aa36ded0b016a1805099b873188aacfb1a7bb407a318b654","dup-0074",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq4-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1593","2026-09-14T21:22:15.5105126Z","4875b28fa7c7faa708b78b8528ebcac5d46f6bad3e993104c3653507e514981c","dup-0034",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq5-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","976","2026-09-14T21:22:15.5593441Z","3423023e7f181fede528b403dda90ce05070349c8b3da0368a1a2f07f0955a74","dup-0022",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq7-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1889","2026-09-14T21:22:15.6209379Z","0fb73c69129db212caa16866a86d83f4b72956eb8bf114e9fbc011adcb1310e5","dup-0008",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq9-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","1112","2026-09-14T21:22:15.7269565Z","e4682209bd16d6ad4ba7a962f4ed5f31ad5f77bc2fd06b7cc807ed50cfed3024","dup-0102",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-3fig1-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","3247","2026-09-14T21:22:16.1599197Z","44fd591d83a7b840a86c351e0e7f30ddb003c0502eea44128250cb3c7e96ad8b","",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubdu-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","622","2026-09-14T21:22:16.2045307Z","c19b7f8f1082f628ba7318eb79433e8c2de2ed37faec850271e28d3a5ad2b146","dup-0084",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubi-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","901","2026-09-14T21:22:16.3118952Z","bca8c0463a291f9ec3784d8d987a7113f450bab00cf3020e6fff8a85f6258226","dup-0081",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xbar-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","873","2026-09-14T21:22:15.6780663Z","21d67cd9e0b9e39f95aa44e1c943ed5411a7daf8b5cc0f8905c2b4ade5e5c129","dup-0017",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsuba-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","922","2026-09-14T21:22:16.8108572Z","527b35ef71e55624acdb671f13ba4d950395cab04647d3dc6a3fada3a513cd7b","dup-0039",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubk-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","933","2026-09-14T21:22:16.6430521Z","77898bc11d1da6a8ff4b8564f32c1fa5a31e4f995d19b16f934d1d4aa9f2e236","dup-0059",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubm-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","937","2026-09-14T21:22:16.7687436Z","6e441f94363e861f9c2e4a284e9165cf2d99acd805bff53b91051805b41305f9","dup-0055",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubs-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","911","2026-09-14T21:22:16.7261898Z","fbd2ca68dad43e6550723d22f8c793bec441b28e1f8edf0613bbb3d323b22004","dup-0114",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubw-2023.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","926","2026-09-14T21:22:16.6844665Z","8771e4ccad807828b9dee8032f1bb522eb3ca0407ffb9c00d8975d7d177ae2d2","dup-0065",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\ruffle.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","381452","2026-09-14T21:22:14.7488388Z","7073661b172eb0b4abdac0de7431d86cfe971a6333d0c757e2b341fabdcd2944","dup-0057",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltoc.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","733","2026-09-14T21:22:14.9761327Z","2eef5cc7a05ca41b5bb0d6e0525ac387609ab91f2548b37653e1a5d8341eac57","dup-0019",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltop.gif","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","777","2026-09-14T21:22:17.8989123Z","19a790cc1351650972148416e59edc7be277b8d9bf5c6244c8338046224810a9","dup-0011",".gif" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\Universal-Federated-Analytics-Min.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","31049","2026-09-14T21:22:17.9423872Z","6a694e7f056ca7141599d61f72012477ff8e343b59a5f26a0daae52f9a11307c","dup-0053",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\webready-html-content.css","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","9169","2026-09-14T21:22:14.8836107Z","7ae98628f66a24ef8f450fbd4b6f609b0c1dcdca4467075dbc6c7dba01604e9a","dup-0061",".css" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\wombat.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","106858","2026-09-14T21:22:14.6962694Z","9ccad4ebb5861fe1825c03c1debc52d1014a1b006edb66ef66ff8575874b0a20","dup-0075",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\www-widgetapi.js.下载","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","31772","2026-09-14T21:22:14.2538061Z","2c97bc7e1f873046091b5a57abb2d8191c093db0653c03f3e0857ae382648aaf","",".下载" +"Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions.html","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","667816","2026-09-14T21:22:18.0678960Z","0f57270ab464a8b9424d29d50ca5c1e7adb23b1b739466765188228fbe07411d","",".html" +"Dataset\NSDUH\2023-nsduh-mrb-sample-design.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","20775253","2026-09-14T21:22:04.4821312Z","86703d2e8ccdb3d54c0c9212af08dcadc5480955c0a0616ba35c1d951ad3971e","",".pdf" +"Dataset\NSDUH\2023-nsduh-puf-data-users-guide.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2197918","2026-09-14T21:21:25.8625452Z","e42af0111a60bb682a0cf7d1e70218e84844717d4b30432a09d8f11fb88c9c1a","",".pdf" +"Dataset\NSDUH\2023NSDUHmrbCAISpecs020223.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2389364","2026-09-14T21:21:47.0955680Z","47b3fb93644bfc1b2c11d4b055c28abdc7363f4868057a29f24d15e18b726c6f","dup-0032",".pdf" +"Dataset\NSDUH\2023NSDUHmrbWebCAISpecs013123.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2077234","2026-09-14T21:21:53.7432778Z","5a2deea824aa19f83a4f6295086c6bea9ac81fdfbe595a969e3e3b6073ca8568","",".pdf" +"Dataset\NSDUH\2024-nsduh-method-summary-defs.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","6775184","2026-09-14T21:22:27.1990042Z","cb70a1cfbdb7c2e7105feb2cf08501a4d5728f778111420f97c97f601adfe1b1","",".pdf" +"Dataset\NSDUH\2024-nsduh-mrb-cai-specs.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2388785","2026-09-14T21:22:45.1659989Z","0139a409d0f1f751649912c10042b271aaf9c268df81844418d14ae0886544ee","",".pdf" +"Dataset\NSDUH\2024-nsduh-mrb-eng-web-specs.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","2430030","2026-09-14T21:22:51.7176636Z","8e9b32d365fd5cee3b4507f68548a5bb0f24c506c3abd8b3bef830c158c753e4","",".pdf" +"Dataset\NSDUH\nsduh-2021_2024-ds0001-info-codebook_v1.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","4206033","2026-09-14T21:16:52.6083790Z","e3f93058e459480e0e1b5c19c0837501ca4c6c3c44320d3fb066535a0691e582","",".pdf" +"Dataset\NSDUH\NSDUH-2021-DS0001-bndl-data-sas_v4.zip","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","38169252","2026-09-14T21:25:59.3314610Z","5be6ef6e6f9d66885618d54a299dedbb6954e40b81119649d3aec046337bc6b7","",".zip" +"Dataset\NSDUH\NSDUH-2021-DS0001-bndl-data-spss_v4.zip","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","32377021","2026-09-14T21:26:04.2670642Z","8f5d099227e769690d5a1b3fd9235cbb381130d8f66a4c5eb11c3f33616a8d72","",".zip" +"Dataset\NSDUH\NSDUH-2021-DS0001-info-codebook.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","6212186","2026-09-14T21:25:31.9274591Z","af6d67e9bb6c98bab13f5bb7a9307fed5ed520e964cff79a90739c510918c374","dup-0079",".pdf" +"Dataset\NSDUH\NSDUH-2022-DS0001-bndl-data-sas_v2.zip","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","36201432","2026-09-14T21:24:42.8570021Z","aa737d9a41ac801e82cd9c18a43bbcbcb9ec1939065e324665197a5fbb7ef5cd","",".zip" +"Dataset\NSDUH\NSDUH-2022-DS0001-bndl-data-spss_v2.zip","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","29780925","2026-09-14T21:24:50.7318240Z","1cc9f951bdb772e0b428eadf39f65ba8d4bdda8cd1e3f26e129dfc706900aab1","",".zip" +"Dataset\NSDUH\NSDUH-2022-DS0001-info-codebook_v2.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","5268376","2026-09-14T21:24:26.2139991Z","b306e26967b5e0af01140315d0f2399b7bae9300f7b0161d696ec7ff7da31172","dup-0080",".pdf" +"Dataset\NSDUH\NSDUH-2024-DS0001-bndl-data-sas_v1.zip","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","35204079","2026-09-14T21:24:00.5519262Z","f401e7503dcb3d8d3d9c9716a2e4fc56135886ebc481ce6b8407d5a13a31c97e","",".zip" +"Dataset\NSDUH\NSDUH-2024-DS0001-bndl-data-spss_v1.zip","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","34023471","2026-09-14T21:24:11.3278437Z","73fd90d9fea052b6537f274f9b525cf7a97c816a06ae5c6365febe2254854f66","",".zip" +"Dataset\NSDUH\NSDUH2021PUF_Supplement.pdf","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","142730","2026-09-14T21:25:38.3276943Z","1cae7337137d60cbd8b2e868bc31db7298ef69ec1a90e412d84e3f5e6d8e20d8","dup-0013",".pdf" +"Dataset\NSDUH\NSDUH2022PUF_Supplement_1Nov2024.docx","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","63874","2026-09-14T21:26:03.9883064Z","4fcfb078e0648ce27dd45a263cd7fba203400aee18f49a36d94fb1907dc148ff","",".docx" +"Dataset\NSDUH2024PUF\getBinary.pdf","NSDUH 2024 public-use file","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source candidate","none","conditional","public_use_terms_review_required","2152799","2026-09-14T11:28:04.2161800Z","27ef854d0c55802584d230af2bf7d3eb8624918d19ceab394f7a53830949f2a5","",".pdf" +"Dataset\WHO-country_context\CLASS_2026_07_15.xlsx","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","74013","2026-09-14T11:33:27.2283835Z","260e148fe45d980e3dce8b819df4d2a586f89d401346dc73af3dc68b43bf6ed1","",".xlsx" +"Dataset\WHO-country_context\OGHIST_2026_07_15.xlsx","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","117889","2026-09-14T11:33:28.5144602Z","f9e3908b9ecd3f9480e6e00b43b1beb2cd04c9fbe8e04db3b4bce47d621fb027","",".xlsx" +"Dataset\WHO-country_context\raw\who_gho_indicator_catalog.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","433057","2026-09-03T17:03:57.9051062Z","0d964c9178a840cae02ba099543dc83437b892e9f5b508f7232c610f02afaa5a","",".json" +"Dataset\WHO-country_context\raw\who_MH_1.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","107078","2026-09-03T16:56:15.1657558Z","e0fc72ffecf74ec8444044c4c5526fc4f5212c2335bf2881b2815f7306a3fbea","",".json" +"Dataset\WHO-country_context\raw\who_MH_16.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","78039","2026-09-03T16:56:47.2924363Z","9d6d4a9c3d8237f7190976f8ae1eb415562fd14777af6f1b1a5eae1745ea72d1","",".json" +"Dataset\WHO-country_context\raw\who_MH_17.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","77898","2026-09-03T16:59:09.8763137Z","be76ad8250f7320c16cfe89187cf19a06ecf88c6a19f3769857f36d264310ef4","",".json" +"Dataset\WHO-country_context\raw\who_MH_2.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","107099","2026-09-03T16:56:25.7322466Z","2fac0da47dc879f006b0e5e0c8eff976fb7907ed35f391d39e0e7a6f317d6220","",".json" +"Dataset\WHO-country_context\raw\who_MH_6.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","86697","2026-09-03T16:56:44.6615539Z","fb4236ed544a391cc7d921ed3c7e4e8def2095faa8c68a27d5673e88e75bbbb5","",".json" +"Dataset\WHO-country_context\raw\world_bank_countries.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","125397","2026-09-03T17:03:53.6450236Z","5669953643bada452a69bb1e78839c1c47c7eccc880bb0ca2f85ef7c237ac306","",".json" +"Dataset\WHO-country_context\raw\world_bank_IT.NET.USER.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2450797","2026-09-03T17:03:54.5790044Z","704f711d5ce7e46c9efd426243f8d693e061e902f51ba96adf00fc1a511acf9e","",".json" +"Dataset\WHO-country_context\raw\world_bank_NY.GDP.PCAP.KD.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2391669","2026-09-03T17:03:53.8326271Z","853a22bdf62b8679e8f2f5dc6a099ca52fbfcb24c321b0364dfdabd9c1c9f455","",".json" +"Dataset\WHO-country_context\raw\world_bank_NY.GDP.PCAP.PP.KD.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2578560","2026-09-03T17:03:53.6928631Z","6001783a3df1f65c61d67ed5975fc56573030e1f5aed0f5fb3b19d56307acb5d","",".json" +"Dataset\WHO-country_context\raw\world_bank_SE.SEC.ENRR.FE.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2466382","2026-09-03T17:03:55.1171427Z","d27530f490095e3de38f7b91f333a99a2e3ad1f9b1bc5c9f875f7e316cf48c83","",".json" +"Dataset\WHO-country_context\raw\world_bank_SE.SEC.ENRR.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2363949","2026-09-03T17:03:54.9804203Z","de49d142ebdf7f0b9fc170ad2bf776c917924a9a22a2dd6cef81df7b7accff3c","",".json" +"Dataset\WHO-country_context\raw\world_bank_SE.SEC.ENRR.MA.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2447290","2026-09-03T17:03:55.2490497Z","be43408eead87853dbb4033c8904023b4511b80ef166f0cd45172bf14083a803","",".json" +"Dataset\WHO-country_context\raw\world_bank_SE.XPD.TOTL.GD.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2556202","2026-09-03T17:03:54.8490181Z","ef2fb1d9854a0b9bd4ccff525be010375bee0d42bc5173cd8add1083097ac001","",".json" +"Dataset\WHO-country_context\raw\world_bank_SH.STA.SUIC.P5.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2422167","2026-09-03T17:03:55.8089046Z","9f495138fc06c86e09fc4eb5ee3f20587c215a256b38bb6088d9040db237782c","",".json" +"Dataset\WHO-country_context\raw\world_bank_SH.XPD.CHEX.GD.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2382988","2026-09-03T17:03:54.7125303Z","f9eacffdfbce08784326aa2034a5bc5187d5cb4b00d1ee9b41d01ef57286a1b6","",".json" +"Dataset\WHO-country_context\raw\world_bank_SI.POV.GINI.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2026990","2026-09-03T17:03:53.9808025Z","22932019a83d06688bc1a091d9588b3a760155a987f114836bc6955d5ead773d","",".json" +"Dataset\WHO-country_context\raw\world_bank_SL.UEM.1524.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2791510","2026-09-03T17:03:54.2888356Z","6188e8346297585262041094d6c1231862df98a4bebe989a415dc25abe7104b6","",".json" +"Dataset\WHO-country_context\raw\world_bank_SL.UEM.TOTL.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2625755","2026-09-03T17:03:54.1238748Z","2bf9570d66c0e52ae27ffc658b8354982513724c338f3490a92fc2e0dcc41f72","",".json" +"Dataset\WHO-country_context\raw\world_bank_SP.POP.0014.TO.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2522086","2026-09-03T17:03:55.4073425Z","2e12c0f4388fc4910376bbc6805685b9566e0788285b7b3654c391744c829696","",".json" +"Dataset\WHO-country_context\raw\world_bank_SP.POP.1564.TO.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2531553","2026-09-03T17:03:55.5406078Z","ebe0469d0df1daeec0c95b779e7637ca9adb263716a6fad533d88272a6dffbf2","",".json" +"Dataset\WHO-country_context\raw\world_bank_SP.URB.TOTL.IN.ZS.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2478805","2026-09-03T17:03:54.4458885Z","73c8809ee84f914765cb88653c25586503d3ca55cdb3975a82e78b978bf1b4f4","",".json" +"Dataset\WHO-country_context\raw\world_bank_VC.IHR.PSRC.P5.json","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","2410082","2026-09-03T17:03:55.6765729Z","f0a41a9a84562f7ad52cf938c4e21d847549d5b42b5e9649e81c3cfd2015bf89","",".json" +"Dataset\WHO-country_context\README.md","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","3083","2026-09-03T17:04:35.1348531Z","814d5d5e131168bbefb23536c737919c66ff95278688ac1a5d7fdb5b46343354","",".md" +"Dataset\WHO-country_context\who_candidate_indicator_catalog.csv","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","1000","2026-09-03T17:03:57.9100888Z","2bd0c3cf0c0d0eef59f99f4c0d4f1607f08d942aad035d0896e37ba21393aa16","",".csv" +"Dataset\WHO-country_context\who_country_year_long.csv","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","61423","2026-09-03T17:03:57.9180616Z","812640f319be18586858bb447beca3bd3f5be6c6e4b2d42a728a681d1e892910","",".csv" +"Dataset\WHO-country_context\who_indicator_metadata.csv","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","578","2026-09-03T17:03:57.9190587Z","608ada0b69aff50561b7a25acfb34efbce0ee4c99201e269513e736f9627a0de","",".csv" +"Dataset\WHO-country_context\world_bank_country_codes.csv","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","14751","2026-09-03T17:03:53.6470177Z","78a488455afb47146b87d16a74a614207829757887da9c4b7134449d5b004366","",".csv" +"Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","1411796","2026-09-03T17:03:55.9610149Z","b334d353a771de73e0300d0deb365199a95d6eb269f0fdd9955c3885b3b72c6e","",".csv" +"Dataset\WHO-country_context\world_bank_indicator_metadata.csv","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","3856","2026-09-03T17:03:55.9620114Z","4c69a0d27051c7dcdd2e0c9bd9453d9dfeba4e2aa30d807d1682d7435286e0c0","",".csv" +"Dataset\YRBS_National_1991_2023\checksums.csv","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1717","2026-09-03T15:10:39.0692767Z","43b2f99f5d7b6f931df8d759d00b7ae1b5b518375015cc919ed329aadb5a5fdf","",".csv" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\1991_hs_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","49596","2026-09-05T06:05:39.0183684Z","1879b3f9f856259277d7f194623a31a521358bf9d0babee448319ed0bff6fc43","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\1993_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","92197","2026-09-05T06:05:36.4276331Z","126e316f002f1dca0da44a275214a894b378851c45e310620b5b7f68658858a8","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\1995_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","67554","2026-09-05T06:05:33.5366199Z","49a15acb64f8ed293605d7d7ff58c05074fde10ba52c0fb9790e326a4702fe12","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\1997_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","145793","2026-09-05T06:05:31.0036574Z","90e752cfc4a15a28b3817fbc5fb96debeb35a8709214be1e90f624b5906d78e0","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\1999_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","322699","2026-09-05T06:05:12.4409909Z","7a220ace866c63268fc5ea9f0dadf384aacc9146216d508b9bb1e045f0c15fb0","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2001_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","214863","2026-09-05T06:05:09.3256308Z","2a7ae80cdeb4eb0ffcb1f00269d27857d889f0b4c3d23a79394fa4584a2f2e5a","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2003_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","225066","2026-09-05T06:05:06.5067059Z","96cc31f79d0ade61cb5a7392681e33c160a6c6bc474d1123fa000768ae2f5d4d","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2005_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","227216","2026-09-05T06:05:03.1577181Z","d45136f6faeff804039591aafb70d17583b5ea495da71276c9ad366ffd61e1f6","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2007_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","210697","2026-09-05T06:05:00.1380998Z","79fe43c985f1f853f2d9a4d907c5b3f10c46c525a57a53dbb6b5e2a5db91ae83","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2009_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","110940","2026-09-05T06:04:56.6183784Z","7360017ee805881375ded2a79a6ae1e923457a92643df0a01bdff6249acb664c","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2011_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","65922","2026-09-05T06:04:52.6400085Z","9414c19f28550a637e1e96b5b4fede8aaabbe9f0da6a9d8640d072a221478a9d","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2013_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","171284","2026-09-05T06:04:50.1730475Z","d69de8155fb79006e7a9382f864584512e02f65c1d6cd1ad46cbc50f37ad3d7f","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2015_xxh_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","170957","2026-09-05T06:04:47.0311014Z","0f89c5733ce60f0d75dec6ab66b0bd195b98372f8c5f107f85613e4f6ad3b4bb","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2017_yrbs_national_hs_questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","431418","2026-09-05T06:04:44.5226659Z","8d7d926f5ce170bc82e5447663398bb55cb362c1f95dfadd92443079a0fba15a","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2019_YRBS-National-HS-Questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","239960","2026-09-05T06:04:41.6097778Z","dfa2e1d611ff98b65314dbb31dfd4ba966da8700692cbcc9c79adb0517b542e1","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2021-YRBS-National-HS-Questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","152590","2026-09-05T06:04:37.8425905Z","d68d6c5a061b0fba8395b9dd2864abdc13667dbacb6764cb37f2c491c89689b0","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\Questionnaire\2023_YRBS_National_HS_Questionnaire.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","338950","2026-09-05T06:04:34.8966365Z","3c00c06ea82ab8991a8aa757be4dd1ffe694fbe54114fef65bdf98751a58137c","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\2015_yrbs-data-users_guide_smy_combined.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","625734","2026-09-05T05:47:26.9291458Z","0c8edc98ccad82322b33a75a3d0ab6b31f84a3b1c07e53c32349d29e6266a1bd","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\2017_YRBS_Data_Users_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1088143","2026-09-05T05:47:23.6372504Z","3ac5a8b3e62cef9007c5c86f4b8a6eaba15ebd82ef77332335e6670e5387370a","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\2019_National_YRBS_Data_Users_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","929749","2026-09-05T05:46:56.6652194Z","b60d9e9571939a47fab597448cda537e12e8c712cd20cd332d2ebe6c0fcd25b1","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\2021_YRBS_Data_Users_Guide_508.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2215399","2026-09-05T05:46:42.1379788Z","e758264daa61b0e8750401f98c7485ed98eb21983afa87b7fe5f32aa50e2cfe2","dup-0104",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\2023_National_YRBS_Data_Users_Guide508.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1036445","2026-09-05T06:02:17.8843303Z","54b081c797873c1a16d7b6d4be728591667fb7781e799ee2bec9fa6ae3f90a61","dup-0041",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_1991_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","506504","2026-09-05T05:49:20.7138588Z","670935a4f90293af9971f1a20c7b2a0a4a2d9f461be6f5f124b16509eec31b6e","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_1993_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1396379","2026-09-05T05:49:17.8230476Z","f47b72d5e7b75392e5772a2eeed45288297df81bdfe3036058357034e125252e","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_1995_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","465656","2026-09-05T05:49:13.3931945Z","a8fe42f2c4b8492fa5db44a39bf21346d35bd8e040b610c725cd974f677ed8e3","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_1997_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","231675","2026-09-05T05:49:10.6273106Z","68e17bb21378ba3a959023a72119dc0badd1710a879869a71be62e8c91621980","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_1999_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2173532","2026-09-05T05:48:09.7826787Z","c5ae6b25aaab3983cfdffc60291e941812f58c0a24e8fc759ff6dc7dfee82305","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2001_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1379220","2026-09-05T05:48:06.3754664Z","4f6f7f0e394b6ca6ff6418f861716e0dc46d810cc4fe9b4278568a01a3f853e2","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2003_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2168762","2026-09-05T05:47:54.4005685Z","f949be6c25963d301d75d7b51784306f6b55d4dd12e889f1446f51f642893ffa","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2005_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","3391825","2026-09-05T05:47:49.0010241Z","23702d3ec472bcb92b57fbf77d8beac87447a6b363f25f37dfd811e370c6d2eb","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2007_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","625327","2026-09-05T05:47:45.2812684Z","777b21d52babba0909b60f98cb14f9c95d26d18f72c247b92b31cd7ba62545cc","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2009_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","985965","2026-09-05T05:47:41.5381593Z","28b3c808589137b9b2a34124023dbf0ea3261e9e4cea74680cc7a6c0416137fa","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2011_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","952636","2026-09-05T05:47:35.8338780Z","1f2f7f8212d5a3f137d8ece86b0ac85732da37855c0337a63ea652bd58b07fe8","",".pdf" +"Dataset\YRBS_National_1991_2023\documentation\UserGuide\YRBS_2013_National_User_Guide.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1915344","2026-09-05T05:47:29.9355844Z","2cc1f2a95809f99057923fac9facf6c7d886f4af9ccca354000e42f60185300f","",".pdf" +"Dataset\YRBS_National_1991_2023\extracted_mdb\1991\yrbs1991.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","4747264","2006-05-29T22:50:16.0000000Z","f795d65d4c2dc3e3983d2380079050316a4cbde99047b19a251c3ba3345d60dc","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\1993\yrbs1993.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6950912","2006-05-29T22:50:50.0000000Z","2ca85d7c395c042f73a00bf8a7713a62ef2a36d7425a337d21eb54501d27bfd9","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\1995\yrbs1995.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","4644864","2006-05-29T22:51:16.0000000Z","44d1f8cf65059bb5492639ac124d8363dd774e7e23a4ae90c71eae1ef1960f30","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\1997\yrbs1997.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6840320","2006-05-29T22:52:18.0000000Z","5c817310959931ffa72b19f2d363ca9fff9aef4f3dbcf59562f9d4083c0fa859","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\1999\yrbs1999.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","7389184","2006-05-29T22:21:14.0000000Z","98c4d5009ac0521fb70b3ce635ec7c3292c8272dd5013cc4b30a1fb914162b60","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2001\yrbs2001.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6881280","2006-05-29T22:23:52.0000000Z","cc03ccd1bdd0e67b310d89bb7e6d0f80f3c4ee7382fc604b98276f8627a4eb0b","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2003\yrbs2003.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","11165696","2006-05-29T22:24:42.0000000Z","18584c1e47fc3e19018c96c52dc3768d198403d5203a0380bb5907282a2ab68b","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2005\yrbs2005.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","11313152","2006-05-29T22:26:14.0000000Z","efe195059a396f11655446242d676a00eddc1ffe667329d8abae2b1183c5cad9","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2007\yrbs2007.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","19300352","2008-03-24T01:17:14.0000000Z","2fefb8e23df170ea8e6b49a2dea3e01341345a4b3207e16accd34b2f196ec441","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2009\yrbs2009.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","45023232","2010-04-26T21:34:10.0000000Z","cc3b358db3e962aab96847c13656d187a297ccda42868daed3f115560ccb41fb","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2011\yrbs2011.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","21295104","2012-03-18T21:37:04.0000000Z","e66538f4a05dfcc985b5c7f52cecb7b1de9f926cfbb7ab3e602e2c0e027bdbb3","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2013\YRBS2013.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","25538560","2014-01-02T01:34:52.0000000Z","1ac5da17ce1b94ba2b46826ee82bbe7a45d29b978e772ad1b32773d5d6e8128a","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2015\YRBS2015.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","50716672","2018-06-12T22:15:08.0000000Z","28088e68ec6ac9ed8123d50c2055fcfe39d65babf8ac6d6facda49928e4fcbf8","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2017\XXH2017_YRBS_Data.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","47943680","2018-04-30T02:39:28.0000000Z","e28c6b56174e0bb8d37bec96afcc43dc819f35f8aea9b7ab4064e79defb37c4c","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2019\XXH2019_YRBS_Data.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","25825280","2019-11-25T18:03:06.0000000Z","beae213846795bd6cc8961d1517243ac9a11384239ed00a0e6f909641c7ced65","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2021\XXH2021_YRBS_Data.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","32157696","2023-02-09T21:59:02.0000000Z","8ed22a313eeec272998d76e45d5b4c1b4f375809db5a2b5ef97b8936dbb37645","",".mdb" +"Dataset\YRBS_National_1991_2023\extracted_mdb\2023\XXH2023_YRBS_Data.mdb","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","38273024","2024-01-24T07:33:32.0000000Z","04b39e29c8e51b2e5697b6faf427e455c87d70193f01e78aa79b1e1e9ccf6171","",".mdb" +"Dataset\YRBS_National_1991_2023\raw\XXH2017_YRBS_Data.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6334185","2026-09-03T15:10:41.6682392Z","99f7a87f1f936b21674603064118222247e797323377de7c7365e75a26c6f4b9","",".dat" +"Dataset\YRBS_National_1991_2023\raw\XXH2017_YRBS_Data.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","3795289","2026-09-05T05:49:58.4185600Z","394f0dffeab88a8920d9c996ab23f3947fd214e6a3846ff6823d14683f065b06","",".zip" +"Dataset\YRBS_National_1991_2023\raw\XXH2019_YRBS_Data.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","5758017","2026-09-03T15:10:43.9772715Z","9bfb3e87c519418eb6bd5b491ecfc723c1b21b85dbe796816fcce6b3cea8ca26","",".dat" +"Dataset\YRBS_National_1991_2023\raw\XXH2019_YRBS_Data.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2110950","2026-09-05T05:49:55.2737880Z","aa5be5a6c4d182869547cf450fb64336d9f9b03ecb79cbb2655a16f5b7792c43","",".zip" +"Dataset\YRBS_National_1991_2023\raw\XXH2021_YRBS_Data.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2733554","2026-09-05T05:49:54.3748858Z","f5eb79107a464a871721ab96ce75637d5bf8374c3b47cc71458837bb8b585a34","dup-0111",".zip" +"Dataset\YRBS_National_1991_2023\raw\XXH2023_YRBS_Data.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","8503569","2026-09-05T05:21:43.0249450Z","0a83cba11dc8a0cdf0043aacf0b80478f86cf93a91a8ecb81a276518e486241a","dup-0003",".dat" +"Dataset\YRBS_National_1991_2023\raw\XXH2023_YRBS_Data.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","3306896","2026-09-05T05:21:36.6887990Z","5343eeecf9aee1e50e68510fb05d7142236f67f7a54879a611f04ece39e79936","dup-0040",".zip" +"Dataset\YRBS_National_1991_2023\raw\YRBS_2021_National.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","7289136","2026-09-03T15:11:17.4307320Z","0a8605d7843fba9cb50e7c0c4094089b0ce2793a9988506971fdae3d9f2a04ae","dup-0004",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs1991.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1153568","2026-09-03T15:10:48.0192495Z","ed8a86b9a5d767575ee4465946f74514f20fc16bdfa54c9cd87200c22cf7cbc7","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs1991.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","479595","2026-09-03T15:10:48.2442786Z","1616ecf629b7a531f01a2e6dc11b0418c6c532283013c558b14db592bd49af8d","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs1993.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1792560","2026-09-03T15:10:48.9676438Z","4298a0d9d15baccc1602da6a27aab468a3e032acef691d3c264074cdd9bf8e09","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs1993.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","690738","2026-09-03T15:10:49.2763197Z","6a2020362ac8080a55331d02f7aa447e215f5409d304b5de732935cb888b45cf","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs1995.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1232152","2026-09-03T15:10:49.8194147Z","e76e55e6c37adc4ef81192c6ba026b4d7c7b03fc598c25cc63393be28a06c100","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs1995.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","471180","2026-09-03T15:10:50.0366917Z","44691919c1c01814bef0699d9fbd356fa2efcf8b659a74097d68d43af7631812","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs1997.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1821345","2026-09-03T15:10:50.7667153Z","03b654a5ffd0693b5f8e69ff1c2824816964ae4c5da885c3960074591a30d704","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs1997.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","688931","2026-09-03T15:10:51.0921425Z","560682aa139f048e358faea53e32ced1ee295f07161773295f1fae73d37d7785","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs1999.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1949323","2026-09-03T15:10:51.9165974Z","1504ad1c303b701fb6552a68ecfa5fe95abfd54c85dfd7c7e23e95676c2e7d93","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs1999.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","757147","2026-09-03T15:10:52.2329234Z","dd1604f6f75ad54fb13ce910cd987a956adfdd9d01536bbe99091893b75ced01","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2001.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1768130","2026-09-03T15:10:53.1935367Z","b22d6ca658a553ecab134eda670bf9d84281281c0be732a56c8a6a28d14830fc","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2001.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","697164","2026-09-03T15:10:53.5028409Z","717d544536324e8002b61d83d38c70887e154a8557ddda9a83018c0cd4252ec1","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2003.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","3590504","2026-09-03T15:10:54.9608951Z","4d01d3a91ccfddfb129e8c414c60fdc848270056b1e956717f7c7c24718abc75","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2003.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1251996","2026-09-03T15:10:55.5339400Z","20c359d9d773105361f0bed01eeaa7ad5f65836f9ea115c9e351645ab7b59565","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2005.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","5441547","2026-09-03T15:10:57.7224467Z","da3fe2f5059cbb53e69b5f1a1d0a15e15e86e6efbfa6f4548af1c7b931d523f8","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2005.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1350676","2026-09-03T15:10:58.3325536Z","59f2f538be08a33e6333ae81cdb3a2e5063d1d821ea1e6cb2295d8b4b9464790","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2007.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","5433867","2026-09-03T15:11:00.5157710Z","3a5c6ea445fa2c553133e6c69d4c2c21fcb4c9bdeea2ce19de63f2319c24ad60","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2007.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1618938","2026-09-03T15:11:01.2357799Z","8f9b9d203aeff6758f1c2abcb95ca54c004c8afeb74cf0113794af8f33dbc940","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2009.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6498360","2026-09-03T15:11:03.8421915Z","d66092c3b4e1e9e89bc3c9548481718206d4cbc9d00fdd51e4f03e72c9abbdc9","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2009.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","3899326","2026-09-03T15:11:05.3956410Z","3cdeb65e51f9a94ae666788b84e220ace8f3fcb7566aecfa2dfdb7f76d8d0646","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2011.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6031175","2026-09-03T15:11:07.8704242Z","cf36e00a44b45874727ae0fff6aba195a0b774e9fbf23bb77198a5492f8f754d","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2011.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1811961","2026-09-03T15:11:08.6000668Z","1aa5757f6e56eb791d23f959ada129d27754f6d975dbb28e268a104fbbf70e8c","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2013.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","5582613","2026-09-03T15:11:10.8935330Z","46fa5d52941331c6fec2de5ad4f7bce6ab5e12e0e07af46feaebdf9d686eb5c3","",".dat" +"Dataset\YRBS_National_1991_2023\raw\YRBS2013.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2164647","2026-09-03T15:11:11.8259844Z","b5ab5afef36d9465698b3f71bd8153e00c1e08808292b1e984ac6c31f4af0b94","",".zip" +"Dataset\YRBS_National_1991_2023\raw\yrbs2015.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","6608952","2026-09-03T15:11:14.5141161Z","d557f559b8be4301f1b2e790cab3cea5cc15ca10c119b55f72eadc3692d0332b","",".dat" +"Dataset\YRBS_National_1991_2023\raw\yrbs2015.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","4170767","2026-09-05T06:12:36.3536942Z","726283c7bc34785722f1af771b0e970e9fd39a7d7d574870f4241425ac2433a6","",".zip" +"Dataset\YRBS_National_1991_2023\README.md","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1555","2026-09-03T15:11:17.5254116Z","41c9ec30b3bc773ef06eb2aa28adbe2ee793213efaa36460f1058738aa999aa5","",".md" +"Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021_YRBS_Data_Users_Guide_508.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2215399","2026-09-09T13:35:58.1899089Z","e758264daa61b0e8750401f98c7485ed98eb21983afa87b7fe5f32aa50e2cfe2","dup-0104",".pdf" +"Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021XXH-Formats-Program.sas","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","17121","2026-09-09T13:35:20.8699269Z","11f3895710ca4bac72f6aaa0c3ed50a1b65b525c7ea56971e51a8490dbf71d65","dup-0010",".sas" +"Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021XXH-SAS-Input-Program.sas","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","17031","2026-09-09T13:35:20.9333740Z","f5bd4bfaef2c0e6244178649a1b251cef7910ba2f8379a7c97339712b5a00b0d","dup-0110",".sas" +"Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021XXH-SPSS.sps","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","28320","2026-09-09T13:35:21.8223259Z","cf119914952250d8ca363c19b5a4a2368de655aed6ba55fe9742c2d36c8ca5e9","dup-0092",".sps" +"Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\XXH2021_YRBS_Data.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","7289136","2026-09-09T13:35:20.6090310Z","0a8605d7843fba9cb50e7c0c4094089b0ce2793a9988506971fdae3d9f2a04ae","dup-0004",".dat" +"Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\XXH2021_YRBS_Data.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","2733554","2026-09-09T13:35:20.5681252Z","f5eb79107a464a871721ab96ce75637d5bf8374c3b47cc71458837bb8b585a34","dup-0111",".zip" +"Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023_National_YRBS_Data_Users_Guide508.pdf","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","1036445","2026-09-09T13:35:53.7544235Z","54b081c797873c1a16d7b6d4be728591667fb7781e799ee2bec9fa6ae3f90a61","dup-0041",".pdf" +"Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023XXH-Formats-Program.sas","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","18033","2026-09-09T13:35:17.1402352Z","6e5d1ab02070a352733c870cb50b9ecf3158c64b4aa01bf33dfa65d51890cd12","dup-0056",".sas" +"Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023XXH-SAS-Input-Program.sas","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","18559","2026-09-09T13:35:17.5624860Z","89a7d57d9658bb8233d892544b436b8931c2b1d18dce7d8af52080465114771f","dup-0066",".sas" +"Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023XXH-SPSS.sps","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","30337","2026-09-09T13:35:18.1478194Z","e314d685a330946c385fb68c7e521794ccc44ba050f44be190fd3a0392d08288","dup-0099",".sps" +"Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\XXH2023_YRBS_Data.dat","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","8503569","2026-09-09T13:35:16.3026352Z","0a83cba11dc8a0cdf0043aacf0b80478f86cf93a91a8ecb81a276518e486241a","dup-0003",".dat" +"Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\XXH2023_YRBS_Data.zip","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","3306896","2026-09-09T13:35:16.8848225Z","5343eeecf9aee1e50e68510fb05d7142236f67f7a54879a611f04ece39e79936","dup-0040",".zip" +"Dataset\YRBS_NEW\2017XXH_Formats_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17372","2026-09-14T21:27:37.7484170Z","e3b25286d0e7eb9d32205ab5183d69ea40027f488e4bff9042a6a08d392e1f96","",".sas" +"Dataset\YRBS_NEW\2017XXH_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16650","2026-09-14T21:27:38.2459991Z","7cf0121ea4d35dd09366d943c8439bd047c044c32a5f0d63b35a5018ce8bccb0","",".sas" +"Dataset\YRBS_NEW\2017XXH_SPSS.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","28041","2026-09-14T21:27:38.8512818Z","4c24784ef0efe74d5fa49172d612aee6612bebf5a46ed84fa9c712a233560a4d","",".sps" +"Dataset\YRBS_NEW\2019XXH-Formats-Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17260","2026-09-14T21:27:35.7460639Z","2fa63018306f6f95059f73131a2c0a89a3d75da5fe3b094cb06aa433156ec2fc","",".sas" +"Dataset\YRBS_NEW\2019XXH-SAS-Input-Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16244","2026-09-14T21:27:35.9629813Z","43ca1e8edacb4948b47a794813aa7b87b04d4bbf7a9fbdf8d05c0ede0c37ebca","",".sas" +"Dataset\YRBS_NEW\2019XXH-SPSS.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","27605","2026-09-14T21:27:36.2885775Z","c73f8d651e322faa77a3dcd68137cfc86ff198fbc257e89a2121aadc9eb404a6","",".sps" +"Dataset\YRBS_NEW\2021XXH-Formats-Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17121","2026-09-14T21:27:33.3119666Z","11f3895710ca4bac72f6aaa0c3ed50a1b65b525c7ea56971e51a8490dbf71d65","dup-0010",".sas" +"Dataset\YRBS_NEW\2021XXH-SAS-Input-Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17031","2026-09-14T21:27:33.8659121Z","f5bd4bfaef2c0e6244178649a1b251cef7910ba2f8379a7c97339712b5a00b0d","dup-0110",".sas" +"Dataset\YRBS_NEW\2021XXH-SPSS.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","28320","2026-09-14T21:27:34.3002968Z","cf119914952250d8ca363c19b5a4a2368de655aed6ba55fe9742c2d36c8ca5e9","dup-0092",".sps" +"Dataset\YRBS_NEW\2023XXH-Formats-Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","18033","2026-09-14T21:27:30.1638952Z","6e5d1ab02070a352733c870cb50b9ecf3158c64b4aa01bf33dfa65d51890cd12","dup-0056",".sas" +"Dataset\YRBS_NEW\2023XXH-SAS-Input-Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","18559","2026-09-14T21:27:30.5412678Z","89a7d57d9658bb8233d892544b436b8931c2b1d18dce7d8af52080465114771f","dup-0066",".sas" +"Dataset\YRBS_NEW\2023XXH-SPSS.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","30337","2026-09-14T21:27:31.2572816Z","e314d685a330946c385fb68c7e521794ccc44ba050f44be190fd3a0392d08288","dup-0099",".sps" +"Dataset\YRBS_NEW\YRBS_1991_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13053","2026-09-14T21:28:07.9043359Z","be0171407065348f8a94a7edc228c392ed95b7391ccf77de9fb3ba686dc5647f","",".sas" +"Dataset\YRBS_NEW\YRBS_1991_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","6558","2026-09-14T21:28:08.3565874Z","26a46df8efb08cfbefddb9c5ba28c6b7287618d4e53bbc716935ceb5cdabfcae","",".sas" +"Dataset\YRBS_NEW\YRBS_1991_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13357","2026-09-14T21:28:09.5364421Z","4880f8a73603107ac8321834c056b61adfa025191f25db5baffe16eb0d0b9ff6","",".sps" +"Dataset\YRBS_NEW\YRBS_1993_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","15311","2026-09-14T21:28:05.4980563Z","ce0f71fa48fccd4025dfcfa42bf6978ba6b7829e8733a5d32e95cfbc1c9a971b","",".sas" +"Dataset\YRBS_NEW\YRBS_1993_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","7404","2026-09-14T21:28:06.0389504Z","85e8b2797b758462c6f98433e1b4fa34ed5cb91588f7338ffd0470f98328e7e7","",".sas" +"Dataset\YRBS_NEW\YRBS_1993_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","15737","2026-09-14T21:28:06.4144642Z","123d35067d9e7783deb785328940830d7276e20286358ee92a861e5d8fdafded","",".sps" +"Dataset\YRBS_NEW\YRBS_1995_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","15298","2026-09-14T21:28:03.1864883Z","94c122184595b357e2947de706b5d204c1132c027b6a80e47bad9c12bc023855","",".sas" +"Dataset\YRBS_NEW\YRBS_1995_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","7533","2026-09-14T21:28:03.6095481Z","413baa4a2f63e3852733767ac97b2d79906bca84c22ef243130aaa4887c845a1","",".sas" +"Dataset\YRBS_NEW\YRBS_1995_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","15760","2026-09-14T21:28:04.2568871Z","f1e02e01e9feca6290e601f8ac9b5b7e4ebd8987ed21da7a44372362340fe1bb","",".sps" +"Dataset\YRBS_NEW\YRBS_1997_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","15501","2026-09-14T21:28:01.0124909Z","26d268d43e7d1b140a574a578c13408783ca60cc822300db12909fc27c72f0af","",".sas" +"Dataset\YRBS_NEW\YRBS_1997_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","7572","2026-09-14T21:28:01.2399388Z","9c67b72d75a7f1a1b911447e619ec42f0b6c97c5567747e5d29b91c747225ae1","",".sas" +"Dataset\YRBS_NEW\YRBS_1997_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","15944","2026-09-14T21:28:01.6508747Z","21058d4dc61dda2246269a91aa560c81fec2b04a7ef591a577c51ea3f0bcd307","",".sps" +"Dataset\YRBS_NEW\YRBS_1999_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16256","2026-09-14T21:27:58.5289840Z","cbc09ebfb1ec05df7b1081b122acd13b9c4c09ed0fbed2cd0ad217907f3de15f","",".sas" +"Dataset\YRBS_NEW\YRBS_1999_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","7839","2026-09-14T21:27:59.4123882Z","04f9d1cac17586c1918c4421bd72a7c3f3f62980ae78148e42095580ee9a3c14","",".sas" +"Dataset\YRBS_NEW\YRBS_1999_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16851","2026-09-14T21:27:59.3905804Z","9820a9f6913d045c96b690013632faba916ca5e73af46de603eb88081cf40898","",".sps" +"Dataset\YRBS_NEW\YRBS_2001_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16771","2026-09-14T21:27:56.3612682Z","7a8f93b629e99a5af0c68b7b96a633bff9f42d0f7c0d5c97e191745014953264","",".sas" +"Dataset\YRBS_NEW\YRBS_2001_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","7735","2026-09-14T21:27:56.8947160Z","84c009760b2533b995bef73abf6187226b754468c9656cb6f3c234bb7d57af38","",".sas" +"Dataset\YRBS_NEW\YRBS_2001_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17253","2026-09-14T21:27:57.1647003Z","e9073aa0f40653e7aed212cfd61815f14dc16e53b7ad36a5326903766b5bd624","",".sps" +"Dataset\YRBS_NEW\YRBS_2003_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17049","2026-09-14T21:27:54.2784383Z","bef61a34dc08afee4807963a388b9d7734a12632e9b6c93faecb15bc89dd5052","",".sas" +"Dataset\YRBS_NEW\YRBS_2003_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13866","2026-09-14T21:27:54.5546157Z","3eabe1e356d6406aa0104f5d3d0c617cb782b4f87796d97f63b155748247f9e1","",".sas" +"Dataset\YRBS_NEW\YRBS_2003_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","24476","2026-09-14T21:27:55.1172354Z","b7bfc18746c2a4e4cea569c34431e50d982a5a5cc1acf10a4d5f3d9f52dee256","",".sps" +"Dataset\YRBS_NEW\YRBS_2005_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16529","2026-09-14T21:27:51.9915457Z","c695befc1bc53d9d6884ea3911731b907de753b1b42f8cf5b9a1be04df762755","",".sas" +"Dataset\YRBS_NEW\YRBS_2005_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13500","2026-09-14T21:27:52.5692506Z","a324e2b2c2544fd33c79f89af0f48ead63cb48b7e7eefafae1bae81737162330","",".sas" +"Dataset\YRBS_NEW\YRBS_2005_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","23760","2026-09-14T21:27:52.7461643Z","6d1087348ffa38348b55486077433b1024e2d42fbaab3c0c61ec40db70731e88","",".sps" +"Dataset\YRBS_NEW\YRBS_2007_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16888","2026-09-14T21:27:49.6575327Z","ab22223ddd08873b4fd5fd4ea90b9b148672dba023904c3cff475c75b3c885a8","",".sas" +"Dataset\YRBS_NEW\YRBS_2007_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","12981","2026-09-14T21:27:50.3313435Z","e18c313f841c81f896269ebb7aa38db2fd99c5513ddf97f3ba9e6e6e49b6e432","",".sas" +"Dataset\YRBS_NEW\YRBS_2007_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","23919","2026-09-14T21:27:50.6117976Z","5c7cb816dbe633d957fcf803d7b95020e86174795952e07d9abd9ae34d486690","",".sps" +"Dataset\YRBS_NEW\YRBS_2009_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16917","2026-09-14T21:27:47.0046377Z","9d31fc909e64d3af3d267f3f23558d557db260c57ad445abf79f789a690cb58a","",".sas" +"Dataset\YRBS_NEW\YRBS_2009_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13379","2026-09-14T21:27:47.5625777Z","a803ea6e80bf8ebc1873b97c81300f843acdfe087ae44d0e357806edd34042d8","",".sas" +"Dataset\YRBS_NEW\YRBS_2009_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","24423","2026-09-14T21:27:48.2587781Z","7298a09cbf96cb683af2ba32635ca54de37fb3ebc713c6cb574db9995b151cce","",".sps" +"Dataset\YRBS_NEW\YRBS_2011_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16609","2026-09-14T21:27:44.6663734Z","30f5062e9de86a694929f14682df19fd20c6f41f1628f1b7410e10402f87ad7e","",".sas" +"Dataset\YRBS_NEW\YRBS_2011_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13366","2026-09-14T21:27:44.9327484Z","e54b710de5d8da7e54f302c58924854715940abf11fa0e2de75dffe60ac3e7a5","",".sas" +"Dataset\YRBS_NEW\YRBS_2011_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","24320","2026-09-14T21:27:45.3868275Z","b114d509cfc27610fe9dc351f40c2855a4217df48bb66b9f43659d6201fc09c0","",".sps" +"Dataset\YRBS_NEW\YRBS_2013_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16133","2026-09-14T21:27:42.6714498Z","29a6b02ed8c6d6709ff926f225ed20cf708bde3d9cbf8703203f49dbedb6ffb7","",".sas" +"Dataset\YRBS_NEW\YRBS_2013_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","13799","2026-09-14T21:27:43.1385493Z","5a29c38d54f825fd080c306cfba052a2b29551b435a2f75f73ac4e5adaa93a56","",".sas" +"Dataset\YRBS_NEW\YRBS_2013_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","24065","2026-09-14T21:27:43.3459232Z","4115627190686abc18f2714575033f3bdb9150f90bc830911f8e89aeb491fcce","",".sps" +"Dataset\YRBS_NEW\YRBS_2015_SAS_Format_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","17497","2026-09-14T21:27:40.1715246Z","197f5a365f77b6c4394068853a7a64f27fd927e66f21ea276d8a26944d709568","",".sas" +"Dataset\YRBS_NEW\YRBS_2015_SAS_Input_Program.sas","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","16019","2026-09-14T21:27:41.1111472Z","a6d5f98e55ab4e97e487f6591d11647437d94e711a042d9dedbdab13ec502b91","",".sas" +"Dataset\YRBS_NEW\YRBS_2015_SPSS_Syntax.sps","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","27663","2026-09-14T21:27:41.6365738Z","e87ffaba6f6a91fa05d1430f7502ae4d15d71a1440116abf3c1faaaa8a6b58f2","",".sps" +"Dataset\YRBS_SADC\2023-SADC-SAS-Formats-Program.sas","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","20045","2026-09-14T11:29:54.2881558Z","7acf007fa9bb63f40f68ab07ebc0a87c41ff848466b46d44e5de71cfd91456d7","",".sas" +"Dataset\YRBS_SADC\2023-SADC-SAS-Input-Program.sas","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","22071","2026-09-14T11:29:54.5121205Z","5ecb357e72221cc8687418e18d5906e3b0d7b509c109ef9efbfdc7d182f2351a","",".sas" +"Dataset\YRBS_SADC\2023-SADC-SPSS-Input-Program.sps","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","37819","2026-09-14T11:29:54.7513951Z","a6b1f5ddbc02be6bbe1f4e6b5bee4f3a047d78c9ea56fd9f3f837069de5e88b0","",".sps" +"Dataset\YRBS_SADC\2023-YRBS-SADC-Documentation.pdf","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","964252","2026-09-14T10:24:03.9654561Z","ed8ad59b961119e026a11ff7fdb2f798dca71769eb0e5abe0dfe85658ea73937","",".pdf" +"Dataset\YRBS_SADC\sadc_2023_national.dat","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","197882475","2026-09-14T10:23:34.2524163Z","cedacde8e82bfadddb4f55c750c6aeed6c8fa1586ad19f70c27d964f8cc4bcec","",".dat" +"Dataset\YRBS_SADC\SADC_2023_National.MDB","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","691122176","2024-10-04T00:39:18.0000000Z","87f8ed63df1cd9b4862b8d31c55fc0d1a1b1b2cf05facbd239eb44e14519ee0b","",".mdb" +"Dataset\YRBS_SADC\SADC_2023_National.zip","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","39854247","2026-09-14T10:23:56.3562326Z","5499b2a17801a36ea7a5bad7fe23727581b7fcd9465fc6190ebc91526c237f0b","",".zip" +"Dataset\YRBS_Site_2019_Untouched\extracted\SADC_2019_District.MDB","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","1378557952","2020-08-18T01:50:20.0000000Z","73a061fe33b800b77485ea8e05ab9dedd752c472530dc82311786ccdb4b0154b","",".mdb" +"Dataset\YRBS_Site_2019_Untouched\extracted\SADC_2019_State_A_M.MDB","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","2112282624","2026-09-17T12:06:30.1818816Z","4d0dab5473e4439308ff05337d866eeacacd673198632d2781fdc37efd403236","",".mdb" +"Dataset\YRBS_Site_2019_Untouched\extracted\SADC_2019_State_N_Z.MDB","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","2070192128","2026-09-17T12:07:11.1070594Z","234f62f625ca60f8ef63fdcff23fec06865e2c03af92064f65836a8848b79bc3","",".mdb" +"Dataset\YRBS_Site_2019_Untouched\source_archive\2019 SADC States A-M SAS Input Program.sas","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","24036","2026-09-17T09:16:56.7713398Z","8d91baa93b459ee967860e1ab928c78bc4e5c0fca1b8f8233e76b565f7fa5001","",".sas" +"Dataset\YRBS_Site_2019_Untouched\source_archive\2019 SADC States N-Z SAS Input Program.sas","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","24036","2026-09-17T09:17:01.9170562Z","f8d226acc8a16c25c3b7d27ff180c7f47ab651f17eb10048a45c32182a90025e","",".sas" +"Dataset\YRBS_Site_2019_Untouched\source_archive\2019_SADC_SAS_Formats_Program.sas","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","25126","2026-09-17T09:17:07.9791096Z","ecd155f4187ff48cd94a6018ab62144e3f285e9fc1f555ba7268a17668e110bb","",".sas" +"Dataset\YRBS_Site_2019_Untouched\source_archive\2019_YRBS_SADC_Documentation.pdf","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","2127833","2026-09-17T09:17:13.9326189Z","4ee1e87ce2fd3e25dd5f60dbccc2c7111c13a2d07a23280ac949717a1a020d4e","",".pdf" +"Dataset\YRBS_Site_2019_Untouched\source_archive\2019-SADC_District SAS Input Program.sas","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","24034","2026-09-17T09:16:50.0648220Z","d0932da556dacc89f56e5a64cbfbe3be30ee24770952f3e2915053991f7d7388","",".sas" +"Dataset\YRBS_Site_2019_Untouched\source_archive\SADC_2019_District.zip","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","93455504","2026-09-17T09:05:37.9504863Z","62c39cec81f1fac9cb43aa13d46c60a89270f1f0544c7c845d1de015dac58023","",".zip" +"Dataset\YRBS_Site_2019_Untouched\source_archive\SADC_2019_State_A_M.zip","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","143984769","2026-09-17T08:59:05.6287642Z","7869f462afbd44a582c1356bab6b8f4c686767065acc318704bcb0266f183244","",".zip" +"Dataset\YRBS_Site_2019_Untouched\source_archive\SADC_2019_State_N_Z.zip","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","133515086","2026-09-17T08:55:04.1644658Z","5bb26c0fc8432e1d1b4533f5eaf779c58767763eb11a588c4b4ce9d0d9a8be36","",".zip" diff --git a/research/audit/data_source_registry.csv b/research/audit/data_source_registry.csv new file mode 100644 index 0000000..279106b --- /dev/null +++ b/research/audit/data_source_registry.csv @@ -0,0 +1,19 @@ +path_prefix,dataset_group,authority,source_url,project_role,canonical_analysis_entry,readiness,license_distribution_status,notes +"Dataset\GSHS-全球学生健康调查数据\GSHS","GSHS","World Health Organization GSHS / local curated delivery","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","cross-national development candidate","Dataset\GSHS-全球学生健康调查数据\GSHS\01_data\GSHS.csv","audit_required","restricted_redistribution_review_required","Use requires survey-level source and current WHO terms; local package is not an official WHO republication." +"Dataset\GSHS-全球学生健康调查数据","GSHS source archive","WHO GSHS and local source archive","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","provenance archive","none","archive_only","restricted_redistribution_review_required","Do not analyze alternate copies until matched to the canonical GSHS entry." +"Dataset\GSHS_Public_Aux","GSHS public auxiliary","WHO GSHS public documentation","https://extranet.who.int/ncdsmicrodata/index.php/catalog/GSHS","documentation candidate","none","documentation_only","review_current_source_terms","Auxiliary files require item-level source verification before use." +"Dataset\YRBS_National_1991_2023","YRBS national raw archive","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","questionnaire and temporal transfer candidate","Dataset\YRBS_National_1991_2023\raw","raw_verified_by_local_inventory","public_use_terms_review_required","Seventeen national survey years are inventoried; analysis should use verified year-specific layouts." +"Dataset\YRBS_NEW","YRBS documentation/import workspace","US CDC YRBS","https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","layout and questionnaire verification","none","audit_required","public_use_terms_review_required","Not a canonical analysis entry; use to validate official layouts and documentation." +"Dataset\YRBS_Site_2019_Untouched","YRBS site 2019 untouched archive","US CDC YRBS site data","https://www.cdc.gov/yrbs/data/index.html","external/site-level candidate","none","archive_only","public_use_terms_review_required","Preserve untouched; not part of the primary national-series entry." +"Dataset\YRBS_SADC","YRBS SADC candidate","source requires file-level confirmation","","external candidate","none","conditional","unknown_review_required","Retained because scripts/audit references exist; source and population must be confirmed before use." +"Dataset\ABES_2021","ABES 2021","US CDC Adolescent Behaviors and Experiences Survey","https://www.cdc.gov/abes/","external pandemic-period candidate","none","conditional","public_use_terms_review_required","Not in the core three-survey plan; keep separate unless formally added." +"Dataset\可直接分析数据包_NSDUH_YRBS","NSDUH/YRBS processed delivery","SAMHSA NSDUH DAS API and US CDC YRBS programs","https://datatools.samhsa.gov/; https://www.cdc.gov/yrbs/data/national-yrbs-datasets-documentation.html","processed candidate inputs","Dataset\可直接分析数据包_NSDUH_YRBS\NSDUH\nsduh_2021_2024_full.parquet; Dataset\可直接分析数据包_NSDUH_YRBS\YRBS\full_by_year","conditional","upstream_terms_review_required","NSDUH 2021-2024 and YRBS 1991-2019 are candidate entries; YRBS 2021/2023 remain quarantined." +"Dataset\可直接分析数据包_NSDUH_YRBS.zip","NSDUH/YRBS processed delivery archive","local archive of processed delivery","","provenance archive","none","archive_only","inherits_upstream_terms","Exact relationship to unpacked delivery is determined by SHA-256/contents audit." +"Dataset\NSDUH","NSDUH source and documentation workspace","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source archive","none","audit_required","public_use_terms_review_required","Contains source materials and web/documentation artifacts; do not select files by name alone." +"Dataset\National Survey on Drug Use and Health","NSDUH bulk archive","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","external validation source archive","none","archive_only","public_use_terms_review_required","Large bulk/source archive; canonical analysis entry is not assigned." +"Dataset\National Survey on Drug Use and Health.zip","NSDUH bulk archive zip","US SAMHSA NSDUH","https://www.samhsa.gov/data/data-we-collect/nsduh-national-survey-drug-use-and-health","provenance archive","none","archive_only","public_use_terms_review_required","Preserve until duplicate and reference audits are complete." +"Dataset\NSDUH-2021_2024-DS0001-bndl-data-r_v1","NSDUH 2021-2024 R bundle","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source candidate","none","conditional","public_use_terms_review_required","Single delivered bundle; inspect official guide and population restrictions before use." +"Dataset\NSDUH2024PUF","NSDUH 2024 public-use file","US SAMHSA NSDUH","https://datatools.samhsa.gov/","external validation source candidate","none","conditional","public_use_terms_review_required","Confirm exact format, guide and linkage to processed 2024 data." +"Dataset\WHO-country_context","country-year context","World Bank API and WHO data services","https://api.worldbank.org/; https://ghoapi.azureedge.net/api/","later explanatory/context layer","Dataset\WHO-country_context\world_bank_country_year_1990_2025.csv","conditional","source_specific_terms_review_required","Do not add before the measurement layer; preserve source code, observation year and time-match lag." +"Dataset\_organized\external_candidates\Global_Mind_Project","Global Mind external candidate","Sapien Labs / Global Mind Project","","external candidate","none","hold","unknown_review_required","Outside the current GSHS/YRBS/NSDUH core; no analysis until provenance and terms are confirmed." +"Dataset\_organized","organization metadata","local project organization","","project metadata","none","documentation_only","not_applicable","Contains organization and duplicate-audit records in addition to external candidates." diff --git a/research/audit/dataset_group_summary.csv b/research/audit/dataset_group_summary.csv new file mode 100644 index 0000000..5d78544 --- /dev/null +++ b/research/audit/dataset_group_summary.csv @@ -0,0 +1,18 @@ +"dataset_group","files","bytes","readiness","license_distribution_status" +"ABES 2021","7","7391690","conditional","public_use_terms_review_required" +"country-year context","32","42150439","conditional","source_specific_terms_review_required" +"Global Mind external candidate","3","1656016876","hold","unknown_review_required" +"GSHS","61","779756986","audit_required","restricted_redistribution_review_required" +"GSHS public auxiliary","4","278047","documentation_only","review_current_source_terms" +"NSDUH 2021-2024 R bundle","1","138584076","conditional","public_use_terms_review_required" +"NSDUH 2024 public-use file","1","2152799","conditional","public_use_terms_review_required" +"NSDUH bulk archive","85","4844091900","archive_only","public_use_terms_review_required" +"NSDUH bulk archive zip","1","4844112316","archive_only","public_use_terms_review_required" +"NSDUH source and documentation workspace","335","306817254","audit_required","public_use_terms_review_required" +"NSDUH/YRBS processed delivery","33","317135421","conditional","upstream_terms_review_required" +"NSDUH/YRBS processed delivery archive","1","138448123","archive_only","inherits_upstream_terms" +"organization metadata","2","2289","documentation_only","not_applicable" +"YRBS documentation/import workspace","51","871464","audit_required","public_use_terms_review_required" +"YRBS national raw archive","99","525338699","raw_verified_by_local_inventory","public_use_terms_review_required" +"YRBS SADC candidate","7","929903085","conditional","unknown_review_required" +"YRBS site 2019 untouched archive","11","5934213128","archive_only","public_use_terms_review_required" diff --git a/research/audit/duplicate_summary.csv b/research/audit/duplicate_summary.csv new file mode 100644 index 0000000..49cacae --- /dev/null +++ b/research/audit/duplicate_summary.csv @@ -0,0 +1,118 @@ +"duplicate_group","file_count","redundant_copies","bytes_each","potential_redundant_bytes","sha256","paths" +"dup-0001","3","2","991","1982","01981e84ec539c1fe4420cde4391b081b2d66ee046895b9546f704e77e94d96a","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq11-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq9-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq2-2023.gif" +"dup-0002","2","1","1091","1091","0715719ece33268d990c0cb34b72cdd2150c57efbbea5424eeb6baa7c4efa22b","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq16-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq13-2022.gif" +"dup-0003","2","1","8503569","8503569","0a83cba11dc8a0cdf0043aacf0b80478f86cf93a91a8ecb81a276518e486241a","Dataset\YRBS_National_1991_2023\raw\XXH2023_YRBS_Data.dat | Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\XXH2023_YRBS_Data.dat" +"dup-0004","2","1","7289136","7289136","0a8605d7843fba9cb50e7c0c4094089b0ce2793a9988506971fdae3d9f2a04ae","Dataset\YRBS_National_1991_2023\raw\YRBS_2021_National.dat | Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\XXH2021_YRBS_Data.dat" +"dup-0005","2","1","436252","436252","0ac7033dbcfe094acfa62d5bdba98331f86f93ed6b8c25ec57447b132720e3d6","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\gtm.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\gtm.js.下载" +"dup-0006","3","2","1837","3674","0b56ec123ed2d2ccd0ff748032387e8dc97bc02c96c25723f957fe6eccb62691","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq1-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq1-2023.gif" +"dup-0007","2","1","1536","1536","0e240856a2a5d3d65d1fedc49f577af57fabcad853dabd5221162cbc768fe058","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-2-2022.gif" +"dup-0008","3","2","1889","3778","0fb73c69129db212caa16866a86d83f4b72956eb8bf114e9fbc011adcb1310e5","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq7-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq7-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq7-2023.gif" +"dup-0009","3","2","5649","11298","103585bfb64e2fef8a7c9db5797cc308c484b7b71f7836bd7038132327c08175","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\iconochive.css | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\iconochive.css | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\iconochive.css" +"dup-0010","2","1","17121","17121","11f3895710ca4bac72f6aaa0c3ed50a1b65b525c7ea56971e51a8490dbf71d65","Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021XXH-Formats-Program.sas | Dataset\YRBS_NEW\2021XXH-Formats-Program.sas" +"dup-0011","3","2","777","1554","19a790cc1351650972148416e59edc7be277b8d9bf5c6244c8338046224810a9","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\scaltop.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltop.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltop.gif" +"dup-0012","3","2","802","1604","1ac738544eac8f12e25901b4b3329a33c0d43621e1bd1c19cac8308cab4b5036","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq5-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq5-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq5-2023.gif" +"dup-0013","2","1","142730","142730","1cae7337137d60cbd8b2e868bc31db7298ef69ec1a90e412d84e3f5e6d8e20d8","Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH2021PUF_Supplement.pdf | Dataset\NSDUH\NSDUH2021PUF_Supplement.pdf" +"dup-0014","2","1","766","766","203361feb1bc99ae252d4c2b36b61a6c0c30a0dc5fa58510e0291476d6a19bb2","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq6-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq6-2022.gif" +"dup-0015","2","1","988","988","2182d395986471387432eac0e3e3eda86e8f050e13ef88e082764e35fbf0b6ef","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-rr2i-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-rr2i-2022.gif" +"dup-0016","3","2","903","1806","21a8f20a0906b874d54ab2d6646a2074eab2b98cdf60c8e63864c838ef6d9ba6","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq2-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq2-2023.gif" +"dup-0017","3","2","873","1746","21d67cd9e0b9e39f95aa44e1c943ed5411a7daf8b5cc0f8905c2b4ade5e5c129","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xbar-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xbar-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xbar-2023.gif" +"dup-0018","2","1","2309","2309","239c5dafc7b2b4eeb1aec36a55755964dd2216950891028913521569dfb83509","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\embed.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\embed.js.下载" +"dup-0019","3","2","733","1466","2eef5cc7a05ca41b5bb0d6e0525ac387609ab91f2548b37653e1a5d8341eac57","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\scaltoc.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltoc.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\scaltoc.gif" +"dup-0020","3","2","857","1714","3287daec529ef279343216807a021e7362c6c17b6f6469031615e1f8e376d06b","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-pi-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pi-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pi-2023.gif" +"dup-0021","2","1","2131","2131","339a331e6f1d38d6363b34f37d1ab8b6631d7abb68787d7b4b0efbc218901e61","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-5-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-5-2022.gif" +"dup-0022","3","2","976","1952","3423023e7f181fede528b403dda90ce05070349c8b3da0368a1a2f07f0955a74","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq5-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq5-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq5-2023.gif" +"dup-0023","2","1","2469","2469","35083abcbc5a1693cec76ea9c30cd2c530c9f72c1251bc34fd2f13d49ca4d628","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-8-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-8-2022.gif" +"dup-0024","2","1","925","925","35733edcafc8c589f74ea866986d875df90b17966b662c6e379bade0cc40b1b9","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phatsub1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phatsub1-2022.gif" +"dup-0025","2","1","884","884","37a1da8f93895852d3ae3c552dc561b2912222960a9b0d71d9bc55c094d804c0","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-lambda-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-lambda-2022.gif" +"dup-0026","3","2","902","1804","3ad5a34afe7d14782bd3b41a665da67fe225d719f2f4631c2c8015350a0f8cfb","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-pisub0-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pisub0-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pisub0-2023.gif" +"dup-0027","3","2","10252","20504","3e2bb12dd78408c9371fb23c028385d4b4319f32951f23025eacad7c3f9b157a","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\banner-styles.css | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\banner-styles.css | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\banner-styles.css" +"dup-0028","2","1","1199","1199","409daef8e29c891c694a86c664437f1ea8781eaa5777a89d03494a41c6d61185","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq18-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq15-2022.gif" +"dup-0029","3","2","1290","2580","42627d09b2dc86c7c28ef50ac737a98dcd813b28952fee693bf85be4adb1c988","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq21-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq16-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq6-2023.gif" +"dup-0030","2","1","956","956","42ef97b57b701d02520ba82075bcf6355636c8de21ec782ea14d69b7f08b4a61","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-Yhatsubd-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-Yhatsubd-2022.gif" +"dup-0031","2","1","869","869","450816306793421446f9435891877000a6dbc15360a372b45561c9c9ef0a26c4","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq3-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq3-2022.gif" +"dup-0032","2","1","2389364","2389364","47b3fb93644bfc1b2c11d4b055c28abdc7363f4868057a29f24d15e18b726c6f","Dataset\National Survey on Drug Use and Health\NSDUH_2023\2023NSDUHmrbCAISpecs020223.pdf | Dataset\NSDUH\2023NSDUHmrbCAISpecs020223.pdf" +"dup-0033","3","2","1490","2980","481989146bc77fbf6ff7e1efb21cd04e1f257f967bb6b0aaf81a19a8e35c01b3","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-1fig1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig1-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig1-2023.gif" +"dup-0034","3","2","1593","3186","4875b28fa7c7faa708b78b8528ebcac5d46f6bad3e993104c3653507e514981c","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq4-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq4-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq4-2023.gif" +"dup-0035","3","2","1917","3834","49a2674055eb6b85af5a61b08119c17d8aaeeace3e924cb6f71d4d5d4d8e44ec","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-4-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-4-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-2-2023.gif" +"dup-0036","3","2","1199","2398","4a926b78c739bcaab11ad68555c70d6695259bf744839adf2b07a860a7203ef4","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq15-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq12-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq5-2023.gif" +"dup-0037","2","1","926","926","4e6707c3a177781bd3ad766ad32fbc2aaa7730fe6247be888a049169a70ddca9","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-usubk-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-usubk-2022.gif" +"dup-0038","2","1","909","909","50d77b521de3b52b8754b2e73daaf6b55af10bcaf592c35a1cfffe83d437454c","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phat-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phat-2023.gif" +"dup-0039","3","2","922","1844","527b35ef71e55624acdb671f13ba4d950395cab04647d3dc6a3fada3a513cd7b","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsuba-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsuba-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsuba-2023.gif" +"dup-0040","2","1","3306896","3306896","5343eeecf9aee1e50e68510fb05d7142236f67f7a54879a611f04ece39e79936","Dataset\YRBS_National_1991_2023\raw\XXH2023_YRBS_Data.zip | Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\XXH2023_YRBS_Data.zip" +"dup-0041","2","1","1036445","1036445","54b081c797873c1a16d7b6d4be728591667fb7781e799ee2bec9fa6ae3f90a61","Dataset\YRBS_National_1991_2023\documentation\UserGuide\2023_National_YRBS_Data_Users_Guide508.pdf | Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023_National_YRBS_Data_Users_Guide508.pdf" +"dup-0042","2","1","1265","1265","596ab27151143cb1419c77c8440221c8e5a09cc029aeea48b79ff0663260b404","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-1-2022.gif" +"dup-0043","2","1","897","897","597757dbb80e6ccd42d3ca670bd0f71c6b7c68c0b764adebf968c27f58112c02","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq2-2022.gif" +"dup-0044","3","2","872","1744","59aa62ae2980eb136f3ea3341a8a8fd6e192fca47662adbb128394a7c178cb3c","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-pihat-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pihat-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-pihat-2023.gif" +"dup-0045","2","1","212155","212155","5e9ffd8dad9a4c1ae549b807bf9caf6530f9b60aeb727acb166dd3627facf151","Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-info-questionnaire-showcards.pdf | Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH-2020-DS0001-info-questionnaire-showcards.pdf" +"dup-0046","2","1","5613","5613","60d29b08d2167bccdc14bcfadf5cbbc1d65a98b6d19921bc05e645e2aada9dd7","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-12-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-3-2023.gif" +"dup-0047","2","1","960","960","649072b10cb562e3f99f27e8e3fa4d8e19842daccef82f145468aeeff4f7d5ca","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phatsubd-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phatsubd-2022.gif" +"dup-0048","3","2","15155","30310","665abecfab1ee7f13557ef74a4a92aba5c7474cbe9811c164ff13a3e9df9151e","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\athena.js.下载 | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\athena.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\athena.js.下载" +"dup-0049","2","1","7234995","7234995","66b367dc69fc3a0e72f0118ebd92d4e089b39abe202dcfd3c9c9f0c486705f90","Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-info-codebook.pdf | Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH-2020-DS0001-info-codebook.pdf" +"dup-0050","3","2","2825","5650","688c283ee88618d6afc84f1c6d9e4b2bdbc85e405c66a144c911303647086c34","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-scale2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale2-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale2-2023.gif" +"dup-0051","2","1","426572","426572","68b9c370f183ce4c9bb28aa8800c07bd64044b2ea8f1688685b85b66f6bc4658","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\destination | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\destination(1)" +"dup-0052","3","2","1275","2550","69f1253be0687d7008944fbcee3fb91c37019a9395b2ea1f5d39b4a7305731e5","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq3-2021.jpg | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq3-2022.jpg | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq3-2023.jpg" +"dup-0053","2","1","31049","31049","6a694e7f056ca7141599d61f72012477ff8e343b59a5f26a0daae52f9a11307c","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\Universal-Federated-Analytics-Min.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\Universal-Federated-Analytics-Min.js.下载" +"dup-0054","2","1","394959","394959","6d6ba88231ac341072536fdf5a70d052e96d4401d85bf24fbacfdeab144c81a4","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(1) | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(1)" +"dup-0055","3","2","937","1874","6e441f94363e861f9c2e4a284e9165cf2d99acd805bff53b91051805b41305f9","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubm-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubm-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubm-2023.gif" +"dup-0056","2","1","18033","18033","6e5d1ab02070a352733c870cb50b9ecf3158c64b4aa01bf33dfa65d51890cd12","Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023XXH-Formats-Program.sas | Dataset\YRBS_NEW\2023XXH-Formats-Program.sas" +"dup-0057","3","2","381452","762904","7073661b172eb0b4abdac0de7431d86cfe971a6333d0c757e2b341fabdcd2944","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\ruffle.js.下载 | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\ruffle.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\ruffle.js.下载" +"dup-0058","2","1","1527","1527","73793e6c942061937a5ac3d488d30f73b5ada719b085e1a055dbcbd1b9f95c6b","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn38eq1-2022.jpg | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn38eq1-2023.jpg" +"dup-0059","3","2","933","1866","77898bc11d1da6a8ff4b8564f32c1fa5a31e4f995d19b16f934d1d4aa9f2e236","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubk-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubk-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubk-2023.gif" +"dup-0060","3","2","988","1976","79c6505f4995e2f33eb034fc0bcc8cef598c39141cade6a3a874577c84befc68","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq22-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq17-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq7-2023.gif" +"dup-0061","2","1","9169","9169","7ae98628f66a24ef8f450fbd4b6f609b0c1dcdca4467075dbc6c7dba01604e9a","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\webready-html-content.css | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\webready-html-content.css" +"dup-0062","2","1","424370","424370","7b25468601ab94cbc74a679f0deac34aa15e899e02f018e7920fa683165e0a94","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js" +"dup-0063","2","1","308256","308256","80c09cc2d3e420e69131f936f502b785db47239ba70637558ba6dbe17bada06d","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\generic1754575171027.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\generic1754575171027.js.下载" +"dup-0064","2","1","2800","2800","847f04b302e9f1558b30e60f49574f74c2433565e9be4dc4d3d3c787c1d708fd","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-7-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-7-2022.gif" +"dup-0065","3","2","926","1852","8771e4ccad807828b9dee8032f1bb522eb3ca0407ffb9c00d8975d7d177ae2d2","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubw-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubw-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubw-2023.gif" +"dup-0066","2","1","18559","18559","89a7d57d9658bb8233d892544b436b8931c2b1d18dce7d8af52080465114771f","Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023XXH-SAS-Input-Program.sas | Dataset\YRBS_NEW\2023XXH-SAS-Input-Program.sas" +"dup-0067","3","2","1231","2462","8ce31d3a392152bae713a5e79f6abefe514700aa0af5944b2239505448ef4dc1","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq8-2021.jpg | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq8-2022.jpg | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq8-2023.jpg" +"dup-0068","2","1","994","994","8e65964a76db06d3c96b8438a1d898213618172cfc7518b72d0cb0e82476a27f","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-nhatsubd-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-nhatsubd-2022.gif" +"dup-0069","3","2","8042","16084","924b5323d05ebea976217e0262ccc2eda508c93ca20e226f8221dfc96b97490f","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-external-link-2021.jpg | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-external-link-2022.jpg | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-external-link-2023.jpg" +"dup-0070","3","2","953","1906","9293a9601be0f0eff0ec0112f37d8855558b6585925a4a964f6773ecb64b55ad","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq13-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq11-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq4-2023.gif" +"dup-0071","2","1","1073","1073","92d4b8d624d68620f2e7ae89c2d1624ae2cc7747042c05b34af228760ad5362b","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq7-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq6-2022.gif" +"dup-0072","3","2","1245","2490","96aa657e3e326408978d94f87714bc123fac1dc6e01fa8c0857d9865844a38cb","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq9-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq8-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq1-2023.gif" +"dup-0073","2","1","188778","188778","9a0ebe56bd05d559cf650ebfb2a3caefb6834d956629db1ccd82e0041e78643a","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-1-2022.png | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-1-2023.png" +"dup-0074","3","2","1003","2006","9a2a37475a9d4701aa36ded0b016a1805099b873188aacfb1a7bb407a318b654","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq3-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq3-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq3-2023.gif" +"dup-0075","3","2","106858","213716","9ccad4ebb5861fe1825c03c1debc52d1014a1b006edb66ef66ff8575874b0a20","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\wombat.js.下载 | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\wombat.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\wombat.js.下载" +"dup-0076","3","2","30170","60340","9dee864e40cc6555aec50ba166bc68a222258c1c156b44ee277293ef0b63e87c","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\bundle-playback.js.下载 | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\bundle-playback.js.下载 | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\bundle-playback.js.下载" +"dup-0077","3","2","1470","2940","9e4b5b9c5c8c05a45f225b6451c2f96957d151a1ac6f2d1cf68d4230130fc229","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq2-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq2-2023.gif" +"dup-0078","2","1","551","551","ab90b370a9978d2d903dd4713a3eb1d621a4626910b17c0973a3e3a856719a61","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig2-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-1fig2-2023.gif" +"dup-0079","2","1","6212186","6212186","af6d67e9bb6c98bab13f5bb7a9307fed5ed520e964cff79a90739c510918c374","Dataset\National Survey on Drug Use and Health\NSDUH_2021\NSDUH-2021-DS0001-info-codebook.pdf | Dataset\NSDUH\NSDUH-2021-DS0001-info-codebook.pdf" +"dup-0080","2","1","5268376","5268376","b306e26967b5e0af01140315d0f2399b7bae9300f7b0161d696ec7ff7da31172","Dataset\National Survey on Drug Use and Health\NSDUH_2022\NSDUH-2022-DS0001-info-codebook_v2.pdf | Dataset\NSDUH\NSDUH-2022-DS0001-info-codebook_v2.pdf" +"dup-0081","3","2","901","1802","bca8c0463a291f9ec3784d8d987a7113f450bab00cf3020e6fff8a85f6258226","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-wsubi-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubi-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubi-2023.gif" +"dup-0082","2","1","1667","1667","bf37cbc1012fda70aef06a94028b6c22a02176c6c3aee405f237dcedfe6d1ac3","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq4-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq4-2022.gif" +"dup-0083","3","2","414","828","c0f5d2504ed73ae770b7c654699bb366f5aaf526ba5aed43665f7fa466e059f4","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq7-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq7-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq7-2023.gif" +"dup-0084","2","1","622","622","c19b7f8f1082f628ba7318eb79433e8c2de2ed37faec850271e28d3a5ad2b146","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubdu-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-wsubdu-2023.gif" +"dup-0085","2","1","1513","1513","c1a26f26fa9ce2b9af39265ab53493fb4263777ff15b279ddee071d184d1fc0c","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq2-2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq2-2-2022.gif" +"dup-0086","3","2","872","1744","c823238c9ec02ea77805a9768e31c9c226f30de64cb3dd19d33d884af8f331ca","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn42-phat-2021.jpg | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn-phat-2022.jpg | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn-phat-2023.jpg" +"dup-0087","2","1","79414","79414","c8e595f39697c34efdeaf61a157c04ad0b602c008d61200032b314e5c99d29ad","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-5-2022.png | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-6-2023.png" +"dup-0088","2","1","3069600","3069600","cacd9c9d229a763d14e8e857e0e51a55c3a7174a784d5ce4d357d6a5107d7b93","Dataset\National Survey on Drug Use and Health\National Survey of Drug Use and Health 2020\NSDUH-2020-DS0001-info-questionnaire-specs.pdf | Dataset\National Survey on Drug Use and Health\NSDUH_2020\NSDUH-2020-DS0001-info-questionnaire-specs.pdf" +"dup-0089","2","1","940","940","cca276b0082dfd84c3478b8545fde90c3d9983de8fb0a29361a83c9e580ed25c","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-phatsub2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-phatsub2-2022.gif" +"dup-0090","2","1","393668","393668","ccb71bfb0b0c494f7ba3758f5fb934a47e440cfb4541248e20faa6b1c7f17673","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(2) | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\js(2)" +"dup-0091","3","2","437","874","cdf47fedf2b7b4073aa7e39c5daeff00b0808828765250cffa66229a287920f0","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq4-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq4-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq4-2023.gif" +"dup-0092","2","1","28320","28320","cf119914952250d8ca363c19b5a4a2368de655aed6ba55fe9742c2d36c8ca5e9","Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021XXH-SPSS.sps | Dataset\YRBS_NEW\2021XXH-SPSS.sps" +"dup-0093","2","1","84704","84704","cf6b1676e8ae87f005370dd49a668cc73ee77b2377de1f0ead7394cabc80ddfb","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-4-2022.png | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-5-2023.png" +"dup-0094","3","2","983","1966","d0919a26b36d1eedcd88ca5197ee81573356398c5b1b380201d266a9d5e486c8","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq12-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq10-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq3-2023.gif" +"dup-0095","2","1","1265","1265","d28ec943c71363acf10f4732032d6ebf44012b9beb75c9314d4117e9c83ef986","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn29eq4-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn27eq4-2022.gif" +"dup-0096","2","1","55149","55149","d43f7d1121d840b748f5c527a0441d75b00aa7f04bcbdfebfb644ecbbcdb439f","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig3-1-2022.png | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig3-1-2023.png" +"dup-0097","2","1","122634","122634","d7cc2b15691d6bf97961e4a58a2faed9d4e8ef3f07accea8036a2e244ac01f75","Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-3-2022.png | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig4-4-2023.png" +"dup-0098","3","2","535","1070","db0f5efc95d43f5c19b6ce4e2ba0e91a3dd9e7f562b4128fac34292a908a47fe","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq1-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq1-2023.gif" +"dup-0099","2","1","30337","30337","e314d685a330946c385fb68c7e521794ccc44ba050f44be190fd3a0392d08288","Dataset\YRBS_National_1991_2023\source_archive\2023_cdc_download\2023XXH-SPSS.sps | Dataset\YRBS_NEW\2023XXH-SPSS.sps" +"dup-0100","3","2","2863","5726","e3ea1d2f94e795cb4b929a07ee77d592a8f0964355ff544d1707bb2316ccab50","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-scale1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale1-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-scale1-2023.gif" +"dup-0101","2","1","1276","1276","e42219b79b5d90c497c9ea0f911ca214a7d659adfd54e14761741ccf5c10a5f1","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-11-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-11-2022.gif" +"dup-0102","3","2","1112","2224","e4682209bd16d6ad4ba7a962f4ed5f31ad5f77bc2fd06b7cc807ed50cfed3024","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-tab3-2eq9-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq9-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-tab3-2eq9-2023.gif" +"dup-0103","2","1","1772","1772","e530d5e0c520fcddafebb81e53b18e75595300697d9d17b2181b363725a31fd4","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-10-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-10-2022.gif" +"dup-0104","2","1","2215399","2215399","e758264daa61b0e8750401f98c7485ed98eb21983afa87b7fe5f32aa50e2cfe2","Dataset\YRBS_National_1991_2023\documentation\UserGuide\2021_YRBS_Data_Users_Guide_508.pdf | Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021_YRBS_Data_Users_Guide_508.pdf" +"dup-0105","2","1","1101","1101","e784243bf6a55e34276ad66aaf7f43b45eda62069d3dc6ca48270722dd6c6bd5","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq17-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq14-2022.gif" +"dup-0106","2","1","3519542","3519542","ee055165366fdfa33f62150281f81c481da2984a0c64b053cd487ca9bc55e47a","Dataset\National Survey on Drug Use and Health\NSDUH_2022\2022NSDUHmrbCAISpecs070722.pdf | Dataset\NSDUH\2022NSDUHmrbCAISpecs070722.pdf" +"dup-0107","2","1","1282","1282","f074040242c438858e30da265c6228bf3c350525619451aab82ecc01cd7a6f2a","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq2-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq1-2022.gif" +"dup-0108","2","1","2642","2642","f0cf00e6f2a7493e9f9d161768ce1f123c8ef18d457f1060502ebfd597973dfe","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq2-3-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq2-3-2022.gif" +"dup-0109","3","2","75904","151808","f22210277b8702c0806b86fd5663eccebedfebf522a73fb5d3717092b1d5d160","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-fig2-2-2021.png | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-2-2022.png | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-fig2-4-2023.png" +"dup-0110","2","1","17031","17031","f5bd4bfaef2c0e6244178649a1b251cef7910ba2f8379a7c97339712b5a00b0d","Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\2021XXH-SAS-Input-Program.sas | Dataset\YRBS_NEW\2021XXH-SAS-Input-Program.sas" +"dup-0111","2","1","2733554","2733554","f5eb79107a464a871721ab96ce75637d5bf8374c3b47cc71458837bb8b585a34","Dataset\YRBS_National_1991_2023\raw\XXH2021_YRBS_Data.zip | Dataset\YRBS_National_1991_2023\source_archive\2021_cdc_download\XXH2021_YRBS_Data.zip" +"dup-0112","3","2","1041","2082","fa49e0a726fa9fc6ebf24a73e9db78d59a5af6032ebd489ffe7a626f4bf69c8e","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-ftn41eq10-2021.jpg | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq10-2022.jpg | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-ftn37eq10-2023.jpg" +"dup-0113","3","2","1792","3584","fad868e6536d6ac34775bda80a231f4c1483cb2fa1402b04bcbcfb3c912ddf80","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-3-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-3-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-1-2023.gif" +"dup-0114","3","2","911","1822","fbd2ca68dad43e6550723d22f8c793bec441b28e1f8edf0613bbb3d323b22004","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-xsubs-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubs-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-xsubs-2023.gif" +"dup-0115","2","1","1194","1194","fd4c573f13eedf55b36046e4ae598f8b241b9545c1dced74848a36b6ee7bd1e8","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq1-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq2-2022.gif" +"dup-0116","2","1","918","918","ff297bf0264f1a1f1d7b034725efd3b7262aecfec25cdbe8716f15ddb1930399","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-inlineeq5-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-inlineeq5-2022.gif" +"dup-0117","3","2","1858","3716","ff650ba8a349cf277db420ee608cb8a3613799887a2092cc67189faa9766beb3","Dataset\NSDUH\2021 National Survey on Drug Use and Health_ Methodological Summary and Definitions_files\msr-eq3-9-2021.gif | Dataset\NSDUH\2022 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-9-2022.gif | Dataset\NSDUH\2023 National Survey on Drug Use and Health (NSDUH)_ Methodological Summary and Definitions_files\msr-eq3-4-2023.gif" diff --git a/research/audit/environment_audit.md b/research/audit/environment_audit.md new file mode 100644 index 0000000..5b897c7 --- /dev/null +++ b/research/audit/environment_audit.md @@ -0,0 +1,135 @@ +# 阶段 0 运行环境审计与补强 + +审计日期:2026-09-20 +最后补强:2026-09-20 +审计状态:`passed`(Python、R、心理测量、复杂抽样与 CUDA 工具链均已运行验收) +工作流:`Document/research-workflow.md` v1.0 + +## 1. 结论 + +本机现已具备项目阶段 1–7 所需的主要本地软件能力:列式数据处理、常规统计、复杂抽样、SEM/EFA/IRT、PyMC Bayesian 推断、JAX/NumPyro 可选后端、本地 NLP/表格基线和 GPU 计算。所有正式分析应使用项目独立环境,而不是系统 Python。 + +- Python:项目内 CPython 3.12.14 与 `.venv-research`,195 个包已锁定。 +- R:项目内 R 4.6.1 与 `.r-library/4.6`,renv 锁定 119 个包;全安装表 134 行。 +- CUDA:系统 CUDA Toolkit 13.4.2 / nvcc 13.4.92;MSVC 14.44;端到端 kernel 编译和 GPU 运行通过。 +- GPU Python:PyTorch 2.14.0+cu130 在 RTX 5060 Ti 上通过矩阵运算。 + +环境就绪不解除研究设计门槛:正式模型仍必须等待相应阶段的题库、可识别性、冻结验证方案和 Gate 判定。 + +## 2. 硬件与系统 + +| 项目 | 核验结果 | 判定 | +|---|---|---| +| 操作系统 | Microsoft Windows 10.0.26100,x64 | 可用 | +| 逻辑处理器 | 28 | 可用 | +| 物理内存 | 31.82 GiB | 中等规模处理可用;大表仍须分块/列式/稀疏化 | +| GPU | NVIDIA GeForce RTX 5060 Ti,16,311 MiB VRAM,compute capability 12.0 | 可用 | +| NVIDIA 驱动 | 596.36 | 可用;未被 Toolkit 安装器替换 | +| 项目盘 E: | 补强后可用约 250.48 GiB | 当前项目有余量;继续约束缓存与中间产物 | + +## 3. 核心工具 + +| 工具 | 版本/路径 | 验收 | +|---|---|---| +| 项目 Python | CPython 3.12.14;`E:\Model\.venv-research` | 通过 | +| 系统 Python | 3.13.7 | 保留,不用于正式项目环境 | +| R / Rscript | R 4.6.1 UCRT x64;`E:\Model\.tools\R-4.6.1` | 通过 | +| CUDA Toolkit | 13.4.2;nvcc V13.4.92 | 通过 | +| MSVC host compiler | Visual Studio 2022 Community,MSVC 14.44.35207 | 通过 | +| Git | 2.51.0.windows.1 | 已安装;`E:\Model` 不是 Git 仓库 | +| Pandoc | 3.11 | 可用 | + +## 4. Python 研究环境 + +### 4.1 关键版本 + +| 类别 | 包与版本 | +|---|---| +| 数值/表格 | numpy 2.5.3;scipy 1.18.1;pandas 3.0.6;polars 1.44.2;pyarrow 25.0.1;duckdb 1.5.5 | +| 统计 | statsmodels 0.15.0;scikit-learn 1.6.1;xgboost 3.4.1 | +| Bayesian | PyMC 6.3.2;PyTensor 3.3.2;ArviZ 1.3.0;nutpie 0.16.11;JAX 0.11.2;NumPyro 0.22.0;BlackJAX 1.6.2 | +| 心理测量 | semopy 2.3.11;factor-analyzer 0.5.1;pingouin 0.6.1;girth 0.8.0 | +| GPU/NLP | torch 2.14.0+cu130;torchvision 0.29.0+cu130;transformers 5.17.0;sentence-transformers 6.1.0;tabpfn 9.0.0 | + +scikit-learn 固定在 1.6.1,以保留 factor-analyzer 0.5.1 所需的弃用兼容层。torchaudio 因项目无音频任务且官方 cu130 索引没有同代 2.14.0 Windows wheel而未纳入。 + +### 4.2 运行验收 + +`research/environment/smoke-test-result.json` 记录: + +- 25 个目标模块全部导入;`pip check` 无断裂依赖。 +- PyMC/nutpie 完成最小后验采样。 +- semopy CFA 与 factor-analyzer 拟合通过。 +- TabPFN、Transformers 与 Sentence Transformers 导入通过。 +- PyTorch 在 RTX 5060 Ti 上执行 CUDA 矩阵乘法,结果有限。 + +50 draws 的 PyMC 测试仅证明环境可运行,不用于统计诊断或研究结论。 + +## 5. R 研究环境 + +### 5.1 关键版本 + +| 类别 | 包与版本 | +|---|---| +| 复杂抽样 | survey 4.5;srvyr 1.3.1 | +| IRT/SEM | mirt 1.47;lavaan 0.7-2;semTools 0.5-9;psych 2.6.5 | +| 数据交换 | arrow 25.0.1;haven 2.5.5;data.table 1.18.6.1;readr 2.2.0 | +| 复现 | renv 1.2.4;targets 1.12.0 | + +### 5.2 运行验收 + +`research/environment/r-smoke-test-result.json` 记录: + +- 19/19 顶层包导入通过。 +- survey 复杂抽样加权均值返回有限估计。 +- lavaan CFA 明确收敛。 +- mirt 一维 2PL 在已知生成数据(500 人、8 题)上明确收敛。 +- Arrow Parquet 写入/读回成功。 + +## 6. CUDA Toolkit 验收 + +- 官方网络安装器 MD5:`a0810494c821437671d6e68e66f59daf`。 +- `nvcc --version`:CUDA 13.4,V13.4.92。 +- `cuda-smoke-build.cmd` 在 MSVC 环境中以 `sm_120` 编译 `cuda-smoke.cu`。 +- 生成程序在 GPU 上执行 kernel,并输出 `cuda_smoke_result=42`。 +- Toolkit 与 PyTorch wheel 的 CUDA runtime 版本可以不同;项目当前 PyTorch wheel 使用 cu130,已经独立通过 GPU 回归。 + +## 7. 缓存、存储与数据边界 + +- 所有可控运行缓存定向到 `E:\Model\.cache` 或 `E:\Model\.uv-cache`,避免受限用户目录。 +- `.venv-research` 约 4.39 GiB;`.r-library` 约 0.23 GiB。 +- `Dataset` 有 734 个文件,总计约 19.06 GiB;继续使用 Parquet/Arrow、分块和稀疏/长表策略。 +- 嵌入模型权重尚未冻结;模型 ID、revision、许可、语言覆盖和缓存哈希须在阶段 5 前另行审计。 + +## 8. 能力门槛 + +| 能力 | 当前状态 | 仍需满足的研究门槛 | +|---|---|---| +| 元数据/题库整理 | `ready` | 阶段 1 来源双重核查 | +| 共现矩阵/锚定图 | `ready_with_limits` | 分块/稀疏实现与阶段 2 可识别性审计 | +| 复杂抽样描述/方差 | `ready` | 冻结 estimand、权重、分层与 PSU 处理 | +| SEM/IRT 审计 | `ready` | 二元/有序题必须用适当模型,不套连续 CFA 模板 | +| PyMC 分层模型/SBC | `ready` | 等阶段 3 冻结模拟与诊断标准 | +| 本地文本嵌入原型 | `ready_with_limits` | 先冻结模型/许可/语言覆盖,隔离测试证据 | +| CUDA 自定义扩展 | `ready` | 使用 CUDA 13.4 + MSVC 14.44;保留编译日志 | + +## 9. 可复现产物 + +| 产物 | SHA-256 | +|---|---| +| `python-requirements.lock.txt` | `ab8b3162673357891b91fcad7c917fc51cb0a78e27c7e7b979be55c6178699d6` | +| `renv.lock` | `e953f512597b29c233ba5106420f3486e7bb59eaa68d59d3a37ce5a4e2a819f6` | +| `r-installed-packages.csv` | `6fd8ee5c4c0b86a7f1cb5ab43b998bde15e206d4759757787aa7ca91cc110fc9` | +| `r-session-info.txt` | `f091c2b80df38e485ca6907d2376d8340266c40ea6f1767aaaa6e4a67dc4739d` | +| `r-package-versions.json` | `20847cfc813f5450804ca3c67d9950a313d7813d21852671985e6a3c52e3c3f5` | +| `smoke-test-result.json` | `36fe9596221d6bcb9a4a913d6dc870afa1be41cd427d11c9a300459640d14cd7` | +| `r-smoke-test-result.json` | `164cf3587bb0b1df34b9687d09e148f2b262faddc590d9dde61478c847da6779` | + +使用与恢复步骤见 `research/environment/README.md`。 + +## 10. 输入绑定 + +| 输入 | SHA-256 | +|---|---| +| `Document/research-workflow.md` | `5606e8b10064c980a4a08a91ab7e8db73b04e5077d3440d4f26a40dbf90709e5` | +| `research/audit/data_manifest.csv` | `0427a19c3287a2691edbd9a4486917989fe369fcb0f729a01477ce27cd8f98f2` | diff --git a/research/environment/README.md b/research/environment/README.md new file mode 100644 index 0000000..3dd5bf0 --- /dev/null +++ b/research/environment/README.md @@ -0,0 +1,48 @@ +# 研究环境使用说明 + +## 激活 + +在项目根目录的 PowerShell 中运行: + +```powershell +. .\research\environment\activate-research.ps1 +``` + +该脚本会激活 `.venv-research`,设置项目内 R、R library、CUDA 13.4,并把 uv、renv、PyTensor、Numba、Matplotlib、Skrub、Hugging Face 与 Torch 缓存定向到项目目录。 + +## 验收 + +```powershell +python .\research\environment\smoke_test.py +Rscript .\research\environment\r-smoke-test.R +cmd.exe /d /c .\research\environment\cuda-smoke-build.cmd +``` + +期望结果:Python JSON 中所有 imports/tests 为 `passed`;R JSON 中所有 imports/tests 为 `passed` 且 mirt `converged=true`;CUDA 输出 `cuda_smoke_result=42`。 + +## Python 恢复 + +Python 版本固定为 3.12 系列,完整包版本见 `python-requirements.lock.txt`。Torch 使用 PyTorch 官方 CUDA 13.0 索引: + +```powershell +uv python install 3.12 --install-dir .python --no-registry --no-bin --cache-dir .uv-cache +uv venv .venv-research --python .python\cpython-3.12.14-windows-x86_64-none\python.exe --seed --no-project --cache-dir .uv-cache +uv pip install --python .venv-research\Scripts\python.exe --requirements research\environment\python-requirements.lock.txt --index https://download.pytorch.org/whl/cu130 --index-strategy unsafe-best-match --cache-dir .uv-cache +``` + +若 3.12 补丁版本更新,第二条命令应使用实际安装目录,不要硬编码旧补丁版本。 + +## R 恢复 + +R 版本为 4.6.1。顶层包安装入口为 `install-r-packages.R`;完整依赖恢复使用 `renv.lock`。先激活环境,再运行: + +```powershell +Rscript -e "renv::restore(lockfile='research/environment/renv.lock', library='.r-library/4.6', prompt=FALSE)" +``` + +## 约束 + +- 正式分析只使用上述项目环境;不要把系统 Python 3.13 的包状态当作项目依赖。 +- `smoke-test-result.json` 的短链 PyMC 采样只用于环境验收。 +- `cuda-smoke.exe` 是可重建产物;源码和构建脚本才是复现入口。 +- 嵌入模型权重尚未冻结,下载前仍须执行模型许可与版本审计。 diff --git a/research/environment/activate-research.ps1 b/research/environment/activate-research.ps1 new file mode 100644 index 0000000..30053b9 --- /dev/null +++ b/research/environment/activate-research.ps1 @@ -0,0 +1,25 @@ +$ProjectRoot = (Resolve-Path (Join-Path $PSScriptRoot "..\..")).Path +$CacheRoot = Join-Path $ProjectRoot ".cache" + +$env:LOCALAPPDATA = Join-Path $CacheRoot "localappdata" +$env:MPLCONFIGDIR = Join-Path $CacheRoot "matplotlib" +$env:NUMBA_CACHE_DIR = Join-Path $CacheRoot "numba" +$env:SKB_DATA_DIRECTORY = Join-Path $CacheRoot "skrub" +$env:HF_HOME = Join-Path $CacheRoot "huggingface" +$env:TORCH_HOME = Join-Path $CacheRoot "torch" +$env:XDG_CACHE_HOME = $CacheRoot +$env:UV_CACHE_DIR = Join-Path $ProjectRoot ".uv-cache" +$env:RENV_PATHS_ROOT = Join-Path $CacheRoot "renv" +$env:PYTENSOR_FLAGS = "base_compiledir=$(Join-Path $CacheRoot 'pytensor')" + +$env:R_HOME = Join-Path $ProjectRoot ".tools\R-4.6.1" +$env:R_LIBS_USER = Join-Path $ProjectRoot ".r-library\4.6" +$env:CUDA_PATH = "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.4" +$env:Path = "$(Join-Path $env:R_HOME 'bin');$(Join-Path $env:CUDA_PATH 'bin');$env:Path" + +# Windows R uses UCRT/UTF-8 and does not recognize the POSIX locale name C.UTF-8. +Remove-Item Env:LANG -ErrorAction SilentlyContinue +Remove-Item Env:LC_ALL -ErrorAction SilentlyContinue +Remove-Item Env:LC_CTYPE -ErrorAction SilentlyContinue + +& (Join-Path $ProjectRoot ".venv-research\Scripts\Activate.ps1") diff --git a/research/environment/cuda-smoke-build.cmd b/research/environment/cuda-smoke-build.cmd new file mode 100644 index 0000000..b1eb3b0 --- /dev/null +++ b/research/environment/cuda-smoke-build.cmd @@ -0,0 +1,9 @@ +@echo off +call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat" >nul +if errorlevel 1 exit /b %errorlevel% + +"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.4\bin\nvcc.exe" -arch=sm_120 -Xcompiler=/wd4819 "E:\Model\research\environment\cuda-smoke.cu" -o "E:\Model\research\environment\cuda-smoke.exe" +if errorlevel 1 exit /b %errorlevel% + +"E:\Model\research\environment\cuda-smoke.exe" +exit /b %errorlevel% diff --git a/research/environment/cuda-smoke.cu b/research/environment/cuda-smoke.cu new file mode 100644 index 0000000..13a216c --- /dev/null +++ b/research/environment/cuda-smoke.cu @@ -0,0 +1,34 @@ +#include + +#include + +__global__ void increment(int* value) { + *value += 1; +} + +int main() { + int host_value = 41; + int* device_value = nullptr; + + if (cudaMalloc(&device_value, sizeof(int)) != cudaSuccess) { + return 1; + } + if (cudaMemcpy(device_value, &host_value, sizeof(int), cudaMemcpyHostToDevice) != cudaSuccess) { + cudaFree(device_value); + return 2; + } + + increment<<<1, 1>>>(device_value); + if (cudaDeviceSynchronize() != cudaSuccess) { + cudaFree(device_value); + return 3; + } + if (cudaMemcpy(&host_value, device_value, sizeof(int), cudaMemcpyDeviceToHost) != cudaSuccess) { + cudaFree(device_value); + return 4; + } + + cudaFree(device_value); + std::printf("cuda_smoke_result=%d\n", host_value); + return host_value == 42 ? 0 : 5; +} diff --git a/research/environment/install-r-packages.R b/research/environment/install-r-packages.R new file mode 100644 index 0000000..fc0d3d7 --- /dev/null +++ b/research/environment/install-r-packages.R @@ -0,0 +1,48 @@ +command_args <- commandArgs(trailingOnly = FALSE) +script_path <- sub("^--file=", "", grep("^--file=", command_args, value = TRUE)[1]) +script_dir <- dirname(normalizePath(script_path, winslash = "/")) +project_root <- normalizePath(file.path(script_dir, "..", ".."), winslash = "/") +library_path <- file.path(project_root, ".r-library", "4.6") +dir.create(library_path, recursive = TRUE, showWarnings = FALSE) +.libPaths(c(library_path, .libPaths())) + +required_packages <- c( + "survey", "srvyr", + "mirt", + "lavaan", "semTools", "psych", + "data.table", "jsonlite", "arrow", "haven", "readr", + "dplyr", "tidyr", "purrr", "stringr", + "digest", "renv", "targets", "withr" +) + +installed <- rownames(installed.packages(lib.loc = .libPaths())) +missing <- setdiff(required_packages, installed) + +if (length(missing) > 0L) { + install.packages( + missing, + lib = library_path, + repos = c(CRAN = "https://cloud.r-project.org"), + dependencies = c("Depends", "Imports", "LinkingTo"), + type = "binary", + Ncpus = max(1L, parallel::detectCores(logical = TRUE) - 2L) + ) +} + +installed_after <- rownames(installed.packages(lib.loc = .libPaths())) +still_missing <- setdiff(required_packages, installed_after) +if (length(still_missing) > 0L) { + stop("Missing R packages after installation: ", paste(still_missing, collapse = ", ")) +} + +versions <- vapply( + required_packages, + function(package) as.character(packageVersion(package, lib.loc = library_path)), + character(1) +) +writeLines( + jsonlite::toJSON(as.list(versions), pretty = TRUE, auto_unbox = TRUE), + file.path(script_dir, "r-package-versions.json"), + useBytes = TRUE +) +cat("Installed and verified", length(required_packages), "required R packages.\n") diff --git a/research/environment/python-requirements.in b/research/environment/python-requirements.in new file mode 100644 index 0000000..4d2cbe5 --- /dev/null +++ b/research/environment/python-requirements.in @@ -0,0 +1,40 @@ +# Core data and statistical stack +numpy +scipy +pandas +polars +pyarrow +duckdb +openpyxl +networkx +scikit-learn==1.6.1 +statsmodels +patsy +pyreadstat + +# Bayesian modeling and diagnostics +pymc[nutpie] +numpyro +blackjax +bambi + +# Psychometrics and measurement modeling +semopy +factor-analyzer +pingouin +girth + +# Reproducible analysis and visualization +matplotlib +seaborn +plotly +jupyterlab +ipykernel + +# NLP, embeddings, and tabular baselines +torch==2.14.0 +torchvision==0.29.0 +transformers +sentence-transformers +xgboost +tabpfn diff --git a/research/environment/python-requirements.lock.txt b/research/environment/python-requirements.lock.txt new file mode 100644 index 0000000..78ea87e --- /dev/null +++ b/research/environment/python-requirements.lock.txt @@ -0,0 +1,195 @@ +absl-py==2.5.0 +annotated-doc==0.0.5 +annotated-types==0.8.0 +anyio==4.15.1 +argon2-cffi==25.1.0 +argon2-cffi-bindings==26.1.0 +arro3-core==0.8.3 +arrow==1.4.0 +arviz==1.3.0 +arviz-base==1.3.0 +arviz-plots==1.3.1 +arviz-stats==1.3.2 +asttokens==3.0.2 +async-lru==2.3.0 +attrs==26.1.0 +babel==2.18.0 +bambi==0.21.0 +beautifulsoup4==4.15.0 +blackjax==1.6.2 +bleach==6.4.0 +cachetools==6.2.6 +certifi==2026.7.22 +cffi==2.1.1 +charset-normalizer==3.5.1 +click==8.5.0 +cloudpickle==3.1.2 +colorama==0.4.6 +comm==0.2.3 +contourpy==1.4.0 +cycler==0.12.1 +debugpy==1.8.22 +defusedxml==0.7.1 +donfig==0.8.1.post1 +duckdb==1.5.5 +einops==0.8.2 +et-xmlfile==2.0.0 +executing==2.2.1 +factor-analyzer==0.5.1 +fastjsonschema==2.22.2 +filelock==4.0.1 +fonttools==4.65.0 +formulae==0.6.2 +formulaic==1.2.2 +fqdn==1.5.1 +fsspec==2026.9.0 +girth==0.8.0 +google-crc32c==1.8.0 +graphviz==0.21 +h11==0.16.0 +hf-xet==1.6.0 +httpcore==1.0.9 +httpx==0.28.1 +huggingface-hub==1.32.0 +idna==3.20 +interface-meta==2.0.1 +ipykernel==7.3.0 +ipython==9.17.1 +ipython-pygments-lexers==1.1.1 +isoduration==20.11.0 +jax==0.11.2 +jaxlib==0.11.2 +jedi==0.20.0 +jinja2==3.1.6 +joblib==1.6.0 +json5==0.15.0 +jsonpointer==3.1.1 +jsonschema==4.26.0 +jsonschema-specifications==2025.9.1 +jupyter-builder==1.2.3 +jupyter-client==8.10.0 +jupyter-core==5.9.1 +jupyter-events==0.12.1 +jupyter-lsp==2.3.1 +jupyter-server==2.21.1 +jupyter-server-terminals==0.5.4 +jupyterlab==4.6.3 +jupyterlab-pygments==0.3.0 +jupyterlab-server==2.28.1 +kiwisolver==1.5.1 +lark==1.3.1 +lazy-loader==0.5 +lightgbm==4.7.0 +llvmlite==0.49.0 +markdown-it-py==4.2.0 +markupsafe==3.0.3 +matplotlib==3.11.2 +matplotlib-inline==0.2.2 +mdurl==0.1.2 +mistune==3.3.4 +ml-dtypes==0.6.0 +mpmath==1.3.0 +msgspec==0.21.1 +multipledispatch==1.0.0 +narwhals==2.26.0 +nbclient==0.11.0 +nbconvert==7.17.1 +nbformat==5.11.1 +nest-asyncio2==1.7.2 +networkx==3.6.1 +notebook-shim==0.2.4 +numba==0.67.0 +numcodecs==0.17.0 +numdifftools==0.11.1 +numpy==2.5.3 +numpyro==0.22.0 +nutpie==0.16.11 +obstore==0.11.1 +openpyxl==3.1.5 +opt-einsum==3.4.0 +optax==0.2.8 +packaging==26.3 +pandas==3.0.6 +pandas-flavor==0.8.1 +pandocfilters==1.5.1 +parso==0.8.7 +patsy==1.0.3 +pillow==12.3.0 +pingouin==0.6.1 +pip==26.2.1 +platformdirs==4.11.11 +plotly==7.1.0 +polars==1.44.2 +polars-runtime-32==1.44.2 +prometheus-client==0.26.0 +prompt-toolkit==3.0.53 +psutil==7.2.2 +pure-eval==0.2.4 +pyarrow==25.0.1 +pycparser==3.0 +pydantic==2.13.5 +pydantic-core==2.46.5 +pydantic-settings==2.15.0 +pydot==4.0.1 +pygments==2.21.0 +pymc==6.3.2 +pyparsing==3.3.2 +pyreadstat==1.3.6 +pytensor==3.3.2 +python-dateutil==2.9.0.post0 +python-dotenv==1.2.3 +python-json-logger==4.2.0 +pywinpty==3.0.5 +pyyaml==6.0.3 +pyzmq==27.2.0 +referencing==0.37.0 +regex==2026.9.10 +requests==2.34.2 +rfc3339-validator==0.1.4 +rfc3986-validator==0.1.1 +rfc3987-syntax==1.1.0 +rich==15.0.0 +rpds-py==2026.6.3 +safetensors==0.8.0 +scikit-learn==1.6.1 +scipy==1.18.1 +seaborn==0.13.2 +semopy==2.3.11 +send2trash==2.1.0 +sentence-transformers==6.1.0 +setuptools==84.0.0 +shellingham==1.5.4 +six==1.17.0 +skrub==0.10.1 +soupsieve==2.9.2 +sparse==0.17.0 +stack-data==0.6.3 +statsmodels==0.15.0 +sympy==1.14.0 +tabpfn==9.0.0 +tabulate==0.10.0 +terminado==0.18.1 +threadpoolctl==3.7.0 +tinycss2==1.5.1 +tokenizers==0.23.2 +torch==2.14.0+cu130 +torchvision==0.29.0+cu130 +tornado==6.5.10 +tqdm==4.70.1 +traitlets==5.16.1 +transformers==5.17.0 +typer==0.27.2 +typing-extensions==4.16.0 +typing-inspection==0.4.4 +tzdata==2026.4 +uri-template==1.3.0 +urllib3==2.8.0 +wcwidth==0.8.4 +webcolors==25.10.0 +webencodings==0.6.1 +websocket-client==1.9.2 +wrapt==2.4.1 +xarray==2026.7.0 +xarray-einstats==0.11.0 +xgboost==3.4.1 +zarr==3.4.0 diff --git a/research/environment/r-installed-packages.csv b/research/environment/r-installed-packages.csv new file mode 100644 index 0000000..5de37e7 --- /dev/null +++ b/research/environment/r-installed-packages.csv @@ -0,0 +1,135 @@ +"Package","Version","LibPath","Priority","Built" +"arrow","25.0.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:03:57 UTC; windows" +"assertthat","0.2.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:04 UTC; windows" +"audio","0.1-12","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 11:48:59 UTC; windows" +"backports","1.5.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 11:46:10 UTC; windows" +"base64url","1.4","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:57:33 UTC; windows" +"beepr","2.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:57:28 UTC; windows" +"bit","4.6.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"bit64","4.8.6","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 01:55:57 UTC; windows" +"brio","1.1.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"callr","3.8.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:20:58 UTC; windows" +"cli","3.6.6","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:02 UTC; windows" +"clipr","0.8.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:13 UTC; windows" +"cpp11","0.5.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:02 UTC; windows" +"crayon","1.5.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:16 UTC; windows" +"data.table","1.18.6.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:07 UTC; windows" +"DBI","1.3.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:06 UTC; windows" +"dcurver","0.9.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-02 02:55:45 UTC; windows" +"Deriv","4.3.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-03 23:51:16 UTC; windows" +"desc","1.4.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:55:57 UTC; windows" +"diffobj","0.3.9","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-15 21:05:06 UTC; windows" +"digest","0.6.39","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"dplyr","1.2.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-02 04:00:08 UTC; windows" +"e1071","1.7-17","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-02 02:33:28 UTC; windows" +"evaluate","1.0.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:28 UTC; windows" +"forcats","1.0.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 03:20:06 UTC; windows" +"fs","2.1.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"future","1.75.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:55:59 UTC; windows" +"future.apply","1.20.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:21:02 UTC; windows" +"generics","0.1.4","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:01 UTC; windows" +"globals","0.19.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-08-19 12:58:27 UTC; windows" +"glue","1.8.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:02 UTC; windows" +"GPArotation","2026.8-2","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-08-22 23:07:47 UTC; windows" +"gridExtra","2.3.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:40:22 UTC; windows" +"gtable","0.3.6","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:20:45 UTC; windows" +"haven","2.5.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 04:12:04 UTC; windows" +"highr","0.12","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:55:56 UTC; windows" +"hms","1.1.4","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:20:54 UTC; windows" +"igraph","2.3.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 02:21:13 UTC; windows" +"jsonlite","2.0.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"knitr","1.52","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:20:57 UTC; windows" +"lavaan","0.7-2","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:57:27 UTC; windows" +"lifecycle","1.0.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:55:53 UTC; windows" +"listenv","1.0.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:41 UTC; windows" +"magrittr","2.0.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:02 UTC; windows" +"minqa","1.2.8","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 01:55:53 UTC; windows" +"mirt","1.47","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:40:33 UTC; windows" +"mitools","2.7","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:55:02 UTC; windows" +"mnormt","2.1.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 11:46:51 UTC; windows" +"numDeriv","2016.8-1.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-08-19 11:46:08 UTC; windows" +"otel","0.2.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:04 UTC; windows" +"parallelly","1.48.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:41 UTC; windows" +"pbapply","1.7-5","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:39 UTC; windows" +"pbivnorm","0.6.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 11:47:43 UTC; windows" +"permute","0.9-10","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:41 UTC; windows" +"pillar","1.11.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:40:23 UTC; windows" +"pkgbuild","1.4.8","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:40:26 UTC; windows" +"pkgconfig","2.0.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:02 UTC; windows" +"pkgload","1.5.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 03:03:44 UTC; windows" +"praise","1.0.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:38 UTC; windows" +"prettyunits","1.2.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:20 UTC; windows" +"processx","3.9.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 01:55:58 UTC; windows" +"progress","1.2.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:40:25 UTC; windows" +"progressr","1.0.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:41 UTC; windows" +"proxy","0.4-29","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"ps","1.9.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:50 UTC; windows" +"psych","2.6.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:56:45 UTC; windows" +"purrr","1.2.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-02 03:15:05 UTC; windows" +"qs2","0.3.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 02:22:01 UTC; windows" +"quadprog","1.5-8","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 11:46:37 UTC; windows" +"R.methodsS3","1.8.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-08-19 11:46:20 UTC; windows" +"R.oo","1.27.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-08-19 12:58:27 UTC; windows" +"R.utils","2.13.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:55:10 UTC; windows" +"R6","2.6.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:01 UTC; windows" +"Rcpp","1.1.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:07 UTC; windows" +"RcppArmadillo","15.6.0-1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 01:55:59 UTC; windows" +"RcppParallel","6.2.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:53 UTC; windows" +"readr","2.2.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:39:20 UTC; windows" +"renv","1.2.4","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:56:08 UTC; windows" +"rlang","1.3.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:04 UTC; windows" +"rprojroot","2.1.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:04 UTC; windows" +"secretbase","1.3.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 12:17:50 UTC; windows" +"semTools","0.5-9","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:01:34 UTC; windows" +"sessioninfo","1.2.4","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:55:58 UTC; windows" +"SimDesign","2.27","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 03:23:09 UTC; windows" +"splines2","0.5.4","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 01:58:08 UTC; windows" +"srvyr","1.3.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 03:43:24 UTC; windows" +"stringfish","0.19.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 01:56:23 UTC; windows" +"stringi","1.8.9","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-08-19 11:46:22 UTC; windows" +"stringr","1.6.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:40:23 UTC; windows" +"survey","4.5","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 02:21:06 UTC; windows" +"targets","1.12.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 03:05:11 UTC; windows" +"testthat","3.3.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:20:10 UTC; windows" +"tibble","3.3.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:03:39 UTC; windows" +"tidyr","1.3.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:39:19 UTC; windows" +"tidyselect","1.2.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 02:40:22 UTC; windows" +"tzdb","0.5.0","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:18 UTC; windows" +"utf8","1.2.6","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:02 UTC; windows" +"vctrs","0.7.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-02 02:52:27 UTC; windows" +"vegan","2.7-6","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 02:40:30 UTC; windows" +"vroom","1.7.1","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 03:20:06 UTC; windows" +"waldo","0.6.2","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 01:55:56 UTC; windows" +"withr","3.0.3","E:/Model/.r-library/4.6",NA,"R 4.6.1; ; 2026-09-09 00:54:02 UTC; windows" +"xfun","0.60","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:30 UTC; windows" +"yaml","2.3.12","E:/Model/.r-library/4.6",NA,"R 4.6.1; x86_64-w64-mingw32; 2026-09-09 00:54:31 UTC; windows" +"base","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; ; 2026-06-24 08:20:51 UTC; windows" +"boot","1.3-32","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; ; 2026-06-24 08:32:04 UTC; windows" +"class","7.3-23","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:33:04 UTC; windows" +"cluster","2.1.8.2","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:32:11 UTC; windows" +"codetools","0.2-20","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; ; 2026-06-24 08:32:25 UTC; windows" +"compiler","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; ; 2026-06-24 08:14:21 UTC; windows" +"datasets","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; ; 2026-06-24 08:19:02 UTC; windows" +"foreign","0.8-91","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:32:28 UTC; windows" +"graphics","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:16:56 UTC; windows" +"grDevices","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:16:14 UTC; windows" +"grid","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:19:46 UTC; windows" +"KernSmooth","2.23-26","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:32:40 UTC; windows" +"lattice","0.22-9","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:23:40 UTC; windows" +"MASS","7.3-65","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:23:25 UTC; windows" +"Matrix","1.7-5","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:23:58 UTC; windows" +"methods","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:19:12 UTC; windows" +"mgcv","1.9-4","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:33:21 UTC; windows" +"nlme","3.1-169","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:30:23 UTC; windows" +"nnet","7.3-20","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:33:09 UTC; windows" +"parallel","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:20:30 UTC; windows" +"rpart","4.1.27","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:32:48 UTC; windows" +"spatial","7.3-18","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:33:14 UTC; windows" +"splines","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:20:12 UTC; windows" +"stats","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:17:23 UTC; windows" +"stats4","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; ; 2026-06-24 08:20:17 UTC; windows" +"survival","3.8-6","E:/Model/.tools/R-4.6.1/library","recommended","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:30:55 UTC; windows" +"tcltk","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:20:20 UTC; windows" +"tools","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:14:19 UTC; windows" +"translations","4.6.1","E:/Model/.tools/R-4.6.1/library",NA,"R 4.6.1; ; 2026-06-24 08:20:37 UTC; windows" +"utils","4.6.1","E:/Model/.tools/R-4.6.1/library","base","R 4.6.1; x86_64-w64-mingw32; 2026-06-24 08:15:23 UTC; windows" diff --git a/research/environment/r-package-versions.json b/research/environment/r-package-versions.json new file mode 100644 index 0000000..4b53927 --- /dev/null +++ b/research/environment/r-package-versions.json @@ -0,0 +1,21 @@ +{ + "survey": "4.5", + "srvyr": "1.3.1", + "mirt": "1.47", + "lavaan": "0.7.2", + "semTools": "0.5.9", + "psych": "2.6.5", + "data.table": "1.18.6.1", + "jsonlite": "2.0.0", + "arrow": "25.0.1", + "haven": "2.5.5", + "readr": "2.2.0", + "dplyr": "1.2.1", + "tidyr": "1.3.2", + "purrr": "1.2.2", + "stringr": "1.6.0", + "digest": "0.6.39", + "renv": "1.2.4", + "targets": "1.12.0", + "withr": "3.0.3" +} diff --git a/research/environment/r-session-info.txt b/research/environment/r-session-info.txt new file mode 100644 index 0000000..51ec818 --- /dev/null +++ b/research/environment/r-session-info.txt @@ -0,0 +1,22 @@ +R version 4.6.1 (2026-06-24 ucrt) +Platform: x86_64-w64-mingw32/x64 +Running under: Windows 11 x64 (build 26100) + +Matrix products: default + LAPACK version 3.12.1 + +locale: +[1] LC_COLLATE=Chinese (Simplified)_China.utf8 +[2] LC_CTYPE=Chinese (Simplified)_China.utf8 +[3] LC_MONETARY=Chinese (Simplified)_China.utf8 +[4] LC_NUMERIC=C +[5] LC_TIME=Chinese (Simplified)_China.utf8 + +time zone: Pacific/Auckland +tzcode source: internal + +attached base packages: +[1] stats graphics grDevices utils datasets methods base + +loaded via a namespace (and not attached): +[1] compiler_4.6.1 tools_4.6.1 renv_1.2.4 diff --git a/research/environment/r-smoke-test-result.json b/research/environment/r-smoke-test-result.json new file mode 100644 index 0000000..13e1968 --- /dev/null +++ b/research/environment/r-smoke-test-result.json @@ -0,0 +1,112 @@ +{ + "r_version": "R version 4.6.1 (2026-06-24 ucrt)", + "library_path": "E:/Model/.r-library/4.6", + "imports": { + "survey": { + "status": "passed", + "version": "4.5" + }, + "srvyr": { + "status": "passed", + "version": "1.3.1" + }, + "mirt": { + "status": "passed", + "version": "1.47" + }, + "lavaan": { + "status": "passed", + "version": "0.7.2" + }, + "semTools": { + "status": "passed", + "version": "0.5.9" + }, + "psych": { + "status": "passed", + "version": "2.6.5" + }, + "data.table": { + "status": "passed", + "version": "1.18.6.1" + }, + "jsonlite": { + "status": "passed", + "version": "2.0.0" + }, + "arrow": { + "status": "passed", + "version": "25.0.1" + }, + "haven": { + "status": "passed", + "version": "2.5.5" + }, + "readr": { + "status": "passed", + "version": "2.2.0" + }, + "dplyr": { + "status": "passed", + "version": "1.2.1" + }, + "tidyr": { + "status": "passed", + "version": "1.3.2" + }, + "purrr": { + "status": "passed", + "version": "1.2.2" + }, + "stringr": { + "status": "passed", + "version": "1.6.0" + }, + "digest": { + "status": "passed", + "version": "0.6.39" + }, + "renv": { + "status": "passed", + "version": "1.2.4" + }, + "targets": { + "status": "passed", + "version": "1.12.0" + }, + "withr": { + "status": "passed", + "version": "3.0.3" + } + }, + "tests": { + "survey_weighted_mean": { + "status": "passed", + "detail": { + "estimate": 3.6667, + "finite": true + } + }, + "lavaan_cfa": { + "status": "passed", + "detail": { + "converged": true + } + }, + "mirt_2pl": { + "status": "passed", + "detail": { + "converged": true, + "items": 8, + "respondents": 500 + } + }, + "arrow_parquet": { + "status": "passed", + "detail": { + "rows": 3, + "columns": 2 + } + } + } +} diff --git a/research/environment/r-smoke-test.R b/research/environment/r-smoke-test.R new file mode 100644 index 0000000..4ef49f9 --- /dev/null +++ b/research/environment/r-smoke-test.R @@ -0,0 +1,113 @@ +command_args <- commandArgs(trailingOnly = FALSE) +script_path <- sub("^--file=", "", grep("^--file=", command_args, value = TRUE)[1]) +script_dir <- dirname(normalizePath(script_path, winslash = "/")) +project_root <- normalizePath(file.path(script_dir, "..", ".."), winslash = "/") +library_path <- file.path(project_root, ".r-library", "4.6") +.libPaths(c(library_path, .libPaths())) + +results <- list( + r_version = R.version.string, + library_path = library_path, + imports = list(), + tests = list() +) + +packages <- c( + "survey", "srvyr", "mirt", "lavaan", "semTools", "psych", + "data.table", "jsonlite", "arrow", "haven", "readr", "dplyr", + "tidyr", "purrr", "stringr", "digest", "renv", "targets", "withr" +) + +for (package in packages) { + status <- tryCatch({ + loadNamespace(package) + list(status = "passed", version = as.character(packageVersion(package))) + }, error = function(error) { + list(status = "failed", detail = conditionMessage(error)) + }) + results$imports[[package]] <- status +} + +run_test <- function(name, expression) { + results$tests[[name]] <<- tryCatch({ + detail <- force(expression) + list(status = "passed", detail = detail) + }, error = function(error) { + list(status = "failed", detail = conditionMessage(error)) + }) +} + +run_test("survey_weighted_mean", { + frame <- data.frame( + value = c(1, 2, 3, 4, 5, 6), + strata = c(1, 1, 1, 2, 2, 2), + psu = c(1, 2, 3, 4, 5, 6), + weight = c(1, 2, 1, 2, 1, 2) + ) + design <- survey::svydesign(~psu, strata = ~strata, weights = ~weight, data = frame) + estimate <- unname(coef(survey::svymean(~value, design))[[1]]) + list(estimate = estimate, finite = is.finite(estimate)) +}) + +run_test("lavaan_cfa", { + set.seed(20260920) + latent <- rnorm(180) + frame <- data.frame( + x1 = 0.8 * latent + rnorm(180, sd = 0.4), + x2 = 0.7 * latent + rnorm(180, sd = 0.5), + x3 = 0.9 * latent + rnorm(180, sd = 0.3) + ) + fit <- lavaan::cfa("factor =~ x1 + x2 + x3", data = frame) + list(converged = lavaan::lavInspect(fit, "converged")) +}) + +run_test("mirt_2pl", { + set.seed(20260920) + sample_size <- 500 + item_count <- 8 + theta <- rnorm(sample_size) + discrimination <- seq(0.8, 1.5, length.out = item_count) + difficulty <- seq(-1.2, 1.2, length.out = item_count) + probabilities <- vapply( + seq_len(item_count), + function(index) plogis(discrimination[index] * (theta - difficulty[index])), + numeric(sample_size) + ) + responses <- matrix( + rbinom(length(probabilities), 1, as.vector(probabilities)), + nrow = sample_size, + ncol = item_count + ) + colnames(responses) <- paste0("item", seq_len(ncol(responses))) + fit <- mirt::mirt( + responses, + 1, + itemtype = "2PL", + verbose = FALSE, + technical = list(NCYCLES = 1000) + ) + converged <- isTRUE(fit@OptimInfo$converged) + if (!converged) stop("mirt 2PL fit did not converge") + list(converged = converged, items = ncol(responses), respondents = nrow(responses)) +}) + +run_test("arrow_parquet", { + cache_dir <- file.path(project_root, ".cache", "r-smoke") + dir.create(cache_dir, recursive = TRUE, showWarnings = FALSE) + path <- file.path(cache_dir, "arrow-smoke.parquet") + arrow::write_parquet(data.frame(id = 1:3, value = c("a", "b", "c")), path) + restored <- arrow::read_parquet(path) + list(rows = nrow(restored), columns = ncol(restored)) +}) + +output_path <- file.path(script_dir, "r-smoke-test-result.json") +writeLines( + jsonlite::toJSON(results, pretty = TRUE, auto_unbox = TRUE, null = "null"), + output_path, + useBytes = TRUE +) +cat(readLines(output_path, warn = FALSE), sep = "\n") + +failed_imports <- names(Filter(function(item) item$status != "passed", results$imports)) +failed_tests <- names(Filter(function(item) item$status != "passed", results$tests)) +quit(status = if (length(failed_imports) || length(failed_tests)) 1L else 0L) diff --git a/research/environment/renv.lock b/research/environment/renv.lock new file mode 100644 index 0000000..f34bb08 --- /dev/null +++ b/research/environment/renv.lock @@ -0,0 +1,4414 @@ +{ + "R": { + "Version": "4.6.1", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cloud.r-project.org" + } + ] + }, + "Packages": { + "DBI": { + "Package": "DBI", + "Version": "1.3.0", + "Source": "Repository", + "Title": "R Database Interface", + "Date": "2026-02-11", + "Authors@R": "c( person(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\") )", + "Description": "A database interface definition for communication between R and relational database management systems. All classes in this package are virtual and need to be extended by the various R/DBMS implementations.", + "License": "LGPL (>= 2.1)", + "URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI", + "BugReports": "https://github.com/r-dbi/DBI/issues", + "Depends": [ + "methods", + "R (>= 3.0.0)" + ], + "Suggests": [ + "arrow", + "blob", + "callr", + "covr", + "DBItest (>= 1.8.2)", + "dbplyr", + "downlit", + "dplyr", + "glue", + "hms", + "knitr", + "magrittr", + "nanoarrow (>= 0.3.0.1)", + "otel", + "otelsdk", + "RMariaDB", + "rmarkdown", + "rprojroot", + "RSQLite (>= 1.1-2)", + "testthat (>= 3.0.0)", + "vctrs", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "false", + "Config/Needs/check": "r-dbi/DBItest", + "Config/Needs/website": "r-dbi/DBItest, r-dbi/dbitemplate, adbi, AzureKusto, bigrquery, DatabaseConnector, dittodb, duckdb, implyr, lazysf, odbc, pool, RAthena, IMSMWU/RClickhouse, RH2, RJDBC, RMariaDB, RMySQL, RPostgres, RPostgreSQL, RPresto, RSQLite, sergeant, sparklyr, withr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "NeedsCompilation": "no", + "Author": "R Special Interest Group on Databases (R-SIG-DB) [aut], Hadley Wickham [aut], Kirill Müller [aut, cre] (ORCID: ), R Consortium [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "Deriv": { + "Package": "Deriv", + "Version": "4.3.5", + "Source": "Repository", + "Type": "Package", + "Title": "Symbolic Differentiation", + "Date": "2026-09-03", + "Authors@R": "c(person(given=\"Andrew\", family=\"Clausen\", role=\"aut\"), person(given=\"Serguei\", family=\"Sokol\", role=c(\"aut\", \"cre\"), email=\"sokol@insa-toulouse.fr\", comment = c(ORCID = \"0000-0002-5674-3327\")), person(given=\"Andreas\", family=\"Rappold\", role=\"ctb\", email=\"arappold@gmx.at\"))", + "Description": "R-based solution for symbolic differentiation. It admits user-defined function as well as function substitution in arguments of functions to be differentiated. Some symbolic simplification is part of the work.", + "License": "GPL (>= 3)", + "Depends": [ + "Rcpp", + "R (>= 4.5)" + ], + "LinkingTo": [ + "Rcpp" + ], + "NeedsCompilation": "yes", + "Suggests": [ + "testthat (>= 0.11.0)" + ], + "BugReports": "https://github.com/sgsokol/Deriv/issues", + "RoxygenNote": "7.3.3", + "Imports": [ + "methods" + ], + "Encoding": "UTF-8", + "Author": "Andrew Clausen [aut], Serguei Sokol [aut, cre] (ORCID: ), Andreas Rappold [ctb]", + "Maintainer": "Serguei Sokol ", + "Repository": "CRAN" + }, + "GPArotation": { + "Package": "GPArotation", + "Version": "2026.8-2", + "Source": "Repository", + "Title": "Gradient Projection Factor Rotation", + "Authors@R": "c( person(\"Coen\", \"Bernaards\", email = \"cab.gparotation@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Paul\", \"Gilbert\", role = \"aut\"), person(\"Robert\", \"Jennrich\", role = \"aut\") )", + "Depends": [ + "R (>= 3.5.0)" + ], + "Description": "Gradient projection algorithms for orthogonal and oblique rotation of factor loadings matrices in factor analysis. Implements a comprehensive set of rotation criteria including quartimax, quartimin, oblimin, geomin, simplimax, the Crawford-Ferguson family, and target rotation, among others. Supports multiple random starts. For details see Bernaards and Jennrich (2005) .", + "License": "GPL (>= 2)", + "URL": "https://cran.r-project.org/package=GPArotation", + "Imports": [ + "stats", + "grDevices", + "graphics", + "utils" + ], + "VignetteBuilder": "utils", + "LazyData": "yes", + "NeedsCompilation": "no", + "Author": "Coen Bernaards [aut, cre], Paul Gilbert [aut], Robert Jennrich [aut]", + "Maintainer": "Coen Bernaards ", + "Repository": "CRAN" + }, + "KernSmooth": { + "Package": "KernSmooth", + "Version": "2.23-26", + "Source": "Repository", + "Priority": "recommended", + "Date": "2024-12-10", + "Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)", + "Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\", email = \"Matt.Wand@uts.edu.au\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src/d*\"), person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"), email = \"Brian.Ripley@R-project.org\", comment = \"R port and updates\"))", + "Note": "Maintainers are not available to give advice on using a package they did not author.", + "Depends": [ + "R (>= 2.5.0)", + "stats" + ], + "Suggests": [ + "MASS", + "carData" + ], + "Description": "Functions for kernel smoothing (and density estimation) corresponding to the book: Wand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".", + "License": "Unlimited", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Author": "Matt Wand [aut], Cleve Moler [ctb] (LINPACK routines in src/d*), Brian Ripley [trl, cre, ctb] (R port and updates)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "MASS": { + "Package": "MASS", + "Version": "7.3-65", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-02-19", + "Revision": "$Rev: 3681 $", + "Depends": [ + "R (>= 4.4.0)", + "grDevices", + "graphics", + "stats", + "utils" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "lattice", + "nlme", + "nnet", + "survival" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\", comment = \"support functions for polr\"))", + "Description": "Functions and datasets to support Venables and Ripley, \"Modern Applied Statistics with S\" (4th edition, 2002).", + "Title": "Support Functions and Datasets for Venables and Ripley's MASS", + "LazyData": "yes", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "Contact": "", + "NeedsCompilation": "yes", + "Author": "Brian Ripley [aut, cre, cph], Bill Venables [aut, cph], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb] (support functions for polr)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "Matrix": { + "Package": "Matrix", + "Version": "1.7-5", + "Source": "Repository", + "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", + "Date": "2026-03-20", + "Priority": "recommended", + "Title": "Sparse and Dense Matrix Classes and Methods", + "Description": "A rich hierarchy of sparse and dense matrix classes, including general, symmetric, triangular, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and 'SuiteSparse' libraries.", + "License": "GPL (>= 2) | file LICENCE", + "URL": "https://Matrix.R-forge.R-project.org", + "BugReports": "https://R-forge.R-project.org/tracker/?atid=294&group_id=61", + "Contact": "Matrix-authors@R-project.org", + "Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")), person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries\", \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")), person(\"George\", \"Karypis\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2753-1437\", \"METIS library\", \"Copyright: Regents of the University of Minnesota\")), person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")), person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\"), person(\"R Core Team\", role = \"ctb\", comment = c(ROR = \"02zz1nj61\", \"base R's matrix implementation\")))", + "Depends": [ + "R (>= 4.4)", + "methods" + ], + "Imports": [ + "grDevices", + "graphics", + "grid", + "lattice", + "stats", + "utils" + ], + "Suggests": [ + "MASS", + "datasets", + "sfsmisc", + "tools" + ], + "Enhances": [ + "SparseM", + "graph" + ], + "LazyData": "no", + "LazyDataNote": "not possible, since we use data/*.R and our S4 classes", + "BuildResaveData": "no", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Douglas Bates [aut] (ORCID: ), Martin Maechler [aut, cre] (ORCID: ), Mikael Jagan [aut] (ORCID: ), Timothy A. Davis [ctb] (ORCID: , SuiteSparse libraries, collaborators listed in dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"), pattern=\"License\", full.names=TRUE, recursive=TRUE)), George Karypis [ctb] (ORCID: , METIS library, Copyright: Regents of the University of Minnesota), Jason Riedy [ctb] (ORCID: , GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), Jens Oehlschlägel [ctb] (initial nearPD()), R Core Team [ctb] (ROR: , base R's matrix implementation)", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN" + }, + "R.methodsS3": { + "Package": "R.methodsS3", + "Version": "1.8.2", + "Source": "Repository", + "Depends": [ + "R (>= 2.13.0)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "codetools" + ], + "Title": "S3 Methods Simplified", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Methods that simplify the setup of S3 generic functions and S3 methods. Major effort has been made in making definition of methods as simple as possible with a minimum of maintenance for package developers. For example, generic functions are created automatically, if missing, and naming conflict are automatically solved, if possible. The method setMethodS3() is a good start for those who in the future may want to migrate to S4. This is a cross-platform package implemented in pure R that generates standard S3 methods.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.methodsS3", + "BugReports": "https://github.com/HenrikBengtsson/R.methodsS3/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R.oo": { + "Package": "R.oo", + "Version": "1.27.1", + "Source": "Repository", + "Depends": [ + "R (>= 2.13.0)", + "R.methodsS3 (>= 1.8.2)" + ], + "Imports": [ + "methods", + "utils" + ], + "Suggests": [ + "tools" + ], + "Title": "R Object-Oriented Programming with or without References", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://henrikbengtsson.github.io/R.oo/, https://github.com/HenrikBengtsson/R.oo", + "BugReports": "https://github.com/HenrikBengtsson/R.oo/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R.utils": { + "Package": "R.utils", + "Version": "2.13.0", + "Source": "Repository", + "Depends": [ + "R (>= 2.14.0)", + "R.oo" + ], + "Imports": [ + "methods", + "utils", + "tools", + "R.methodsS3" + ], + "Suggests": [ + "datasets", + "digest (>= 0.6.10)" + ], + "Title": "Various Programming Utilities", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Utility functions useful when programming and developing R packages.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://henrikbengtsson.github.io/R.utils/, https://github.com/HenrikBengtsson/R.utils", + "BugReports": "https://github.com/HenrikBengtsson/R.utils/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R6": { + "Package": "R6", + "Version": "2.6.1", + "Source": "Repository", + "Title": "Encapsulated Classes with Reference Semantics", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages.", + "License": "MIT + file LICENSE", + "URL": "https://r6.r-lib.org, https://github.com/r-lib/R6", + "BugReports": "https://github.com/r-lib/R6/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Suggests": [ + "lobstr", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark, scales", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "Rcpp": { + "Package": "Rcpp", + "Version": "1.1.2", + "Source": "Repository", + "Title": "Seamless R and C++ Integration", + "Date": "2026-07-01", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))", + "Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at , the paper by Eddelbuettel and Francois (2011, ), the book by Eddelbuettel (2013, ) and the paper by Eddelbuettel and Balamuta (2018, ); see 'citation(\"Rcpp\")' for details.", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "methods", + "utils" + ], + "Suggests": [ + "tinytest", + "inline", + "rbenchmark", + "pkgKitten (>= 0.1.2)" + ], + "URL": "https://www.rcpp.org, https://dirk.eddelbuettel.com/code/rcpp.html, https://github.com/RcppCore/Rcpp", + "License": "GPL (>= 2)", + "BugReports": "https://github.com/RcppCore/Rcpp/issues", + "RoxygenNote": "6.1.1", + "Encoding": "UTF-8", + "VignetteBuilder": "Rcpp", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Romain Francois [aut] (ORCID: ), JJ Allaire [aut] (ORCID: ), Kevin Ushey [aut] (ORCID: ), Qiang Kou [aut] (ORCID: ), Nathan Russell [aut], Iñaki Ucar [aut] (ORCID: ), Doug Bates [aut] (ORCID: ), John Chambers [aut]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "RcppArmadillo": { + "Package": "RcppArmadillo", + "Version": "15.6.0-1", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra Library", + "Date": "2026-09-07", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Binxiang\", \"Ni\", role = \"aut\"), person(\"Conrad\", \"Sanderson\", role = \"aut\", comment = c(ORCID = \"0000-0002-0049-4501\")))", + "Description": "'Armadillo' is a templated C++ linear algebra library aiming towards a good balance between speed and ease of use. It provides high-level syntax and functionality deliberately similar to Matlab. It is useful for algorithm development directly in C++, or quick conversion of research code into production environments. It provides efficient classes for vectors, matrices and cubes where dense and sparse matrices are supported. Integer, floating point and complex numbers are supported. A sophisticated expression evaluator (based on template meta-programming) automatically combines several operations to increase speed and efficiency. Dynamic evaluation automatically chooses optimal code paths based on detected matrix structures. Matrix decompositions are provided through integration with LAPACK, or one of its high performance drop-in replacements (such as 'MKL' or 'OpenBLAS'). It can automatically use 'OpenMP' multi-threading (parallelisation) to speed up computationally expensive operations. . The 'RcppArmadillo' package includes the header files from the 'Armadillo' library; users do not need to install 'Armadillo' itself in order to use 'RcppArmadillo'. Starting from release 15.0.0, the minimum compilation standard is C++14. . Since release 7.800.0, 'Armadillo' is licensed under Apache License 2; previous releases were under licensed as MPL 2.0 from version 3.800.0 onwards and LGPL-3 prior to that; 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.", + "License": "GPL (>= 2)", + "LazyLoad": "yes", + "Depends": [ + "R (>= 3.3.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "Imports": [ + "Rcpp (>= 1.1.1)", + "stats", + "utils", + "methods" + ], + "Suggests": [ + "tinytest", + "Matrix (>= 1.3.0)", + "pkgKitten", + "reticulate", + "slam" + ], + "URL": "https://github.com/RcppCore/RcppArmadillo, https://dirk.eddelbuettel.com/code/rcpp.armadillo.html", + "BugReports": "https://github.com/RcppCore/RcppArmadillo/issues", + "RoxygenNote": "6.0.1", + "Encoding": "UTF-8", + "VignetteBuilder": "Rcpp", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Romain Francois [aut] (ORCID: ), Doug Bates [aut] (ORCID: ), Binxiang Ni [aut], Conrad Sanderson [aut] (ORCID: )", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "RcppParallel": { + "Package": "RcppParallel", + "Version": "6.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "Parallel Programming Tools for 'Rcpp'", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@rstudio.com\"), person(\"Romain\", \"Francois\", role = c(\"aut\", \"cph\")), person(\"Gregory\", \"Vandenbrouck\", role = \"aut\"), person(\"Marcus\", \"Geelnard\", role = c(\"aut\", \"cph\"), comment = \"TinyThread library, https://tinythreadpp.bitsnbites.eu/\"), person(\"Hamada S.\", \"Badr\", email = \"badr@jhu.edu\", role = c(\"ctb\"), comment = c(ORCID = \"0000-0002-9808-2344\")), person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(family = \"Intel\", role = c(\"aut\", \"cph\"), comment = \"oneTBB library\"), person(family = \"UXL Foundation\", role = c(\"aut\", \"cph\"), comment = \"oneTBB library\"), person(family = \"Microsoft\", role = \"cph\"), person(family = \"Posit, PBC\", role = \"cph\") )", + "Description": "High level functions for parallel programming with 'Rcpp'. For example, the 'parallelFor()' function can be used to convert the work of a standard serial \"for\" loop into a parallel one and the 'parallelReduce()' function can be used for accumulating aggregate or other values.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "Rcpp", + "knitr", + "rmarkdown" + ], + "SystemRequirements": "CMake (>= 3.5)", + "License": "GPL (>= 3)", + "URL": "https://rcppcore.github.io/RcppParallel/, https://github.com/RcppCore/RcppParallel", + "BugReports": "https://github.com/RcppCore/RcppParallel/issues", + "Biarch": "TRUE", + "RoxygenNote": "7.3.3", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Kevin Ushey [aut, cre] (ORCID: ), JJ Allaire [aut], Romain Francois [aut, cph], Gregory Vandenbrouck [aut], Marcus Geelnard [aut, cph] (TinyThread library, https://tinythreadpp.bitsnbites.eu/), Hamada S. Badr [ctb] (ORCID: ), Dirk Eddelbuettel [aut] (ORCID: ), Intel [aut, cph] (oneTBB library), UXL Foundation [aut, cph] (oneTBB library), Microsoft [cph], Posit, PBC [cph]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN" + }, + "SimDesign": { + "Package": "SimDesign", + "Version": "2.27", + "Source": "Repository", + "Title": "Structure for Organizing Monte Carlo Simulation Designs", + "Authors@R": "c(person(\"Phil\", \"Chalmers\", email = \"rphilip.chalmers@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID=\"0000-0001-5332-2810\")), person(\"Matthew\", \"Sigal\", role = c(\"ctb\")), person(\"Ogreden\", family=\"Oguzhan\", role = c(\"ctb\")), person(\"Mikko\", family=\"Rönkkö\", role = c(\"aut\")), person(\"Moritz\", family=\"Ketzer\", role = c(\"ctb\")))", + "Description": "Provides tools to safely and efficiently organize and execute Monte Carlo simulation experiments in R. The package controls the structure and back-end of Monte Carlo simulation experiments by utilizing a generate-analyse-summarise workflow. The workflow safeguards against common simulation coding issues, such as automatically re-simulating non-convergent results, prevents inadvertently overwriting simulation files, catches error and warning messages during execution, implicitly supports parallel processing with high-quality random number generation, and provides tools for managing high-performance computing (HPC) array jobs submitted to schedulers such as SLURM. For a pedagogical introduction to the package see Sigal and Chalmers (2016) . For a more in-depth overview of the package and its design philosophy see Chalmers and Adkins (2020) .", + "VignetteBuilder": "knitr", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "methods", + "testthat", + "parallel", + "parallelly", + "dplyr", + "sessioninfo", + "beepr", + "pbapply (>= 1.3-0)", + "future", + "future.apply", + "progressr", + "R.utils", + "codetools", + "clipr", + "e1071", + "qs2", + "stats" + ], + "Suggests": [ + "knitr", + "ggplot2", + "tidyr", + "purrr", + "shiny", + "copula", + "extraDistr", + "renv", + "cli", + "job", + "future.batchtools", + "FrF2", + "rmarkdown", + "RPushbullet", + "mirai", + "httr" + ], + "License": "GPL (>= 2)", + "ByteCompile": "yes", + "LazyData": "true", + "URL": "http://philchalmers.github.io/SimDesign/, https://github.com/philchalmers/SimDesign/wiki", + "Encoding": "UTF-8", + "Config/roxygen2/version": "8.1.0", + "NeedsCompilation": "no", + "Author": "Phil Chalmers [aut, cre] (ORCID: ), Matthew Sigal [ctb], Ogreden Oguzhan [ctb], Mikko Rönkkö [aut], Moritz Ketzer [ctb]", + "Maintainer": "Phil Chalmers ", + "Repository": "CRAN" + }, + "arrow": { + "Package": "arrow", + "Version": "25.0.1", + "Source": "Repository", + "Title": "Integration to 'Apache' 'Arrow'", + "Authors@R": "c( person(\"Neal\", \"Richardson\", email = \"neal.p.richardson@gmail.com\", role = c(\"aut\")), person(\"Ian\", \"Cook\", email = \"ianmcook@gmail.com\", role = c(\"aut\")), person(\"Nic\", \"Crane\", email = \"thisisnic@gmail.com\", role = c(\"aut\")), person(\"Dewey\", \"Dunnington\", role = c(\"aut\"), email = \"dewey@fishandwhistle.net\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(\"Romain\", \"Fran\\u00e7ois\", role = c(\"aut\"), comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Jonathan\", \"Keane\", email = \"jkeane@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Bryce\", \"Mecum\", email = \"brycemecum@gmail.com\", role = c(\"aut\")), person(\"Drago\\u0219\", \"Moldovan-Gr\\u00fcnfeld\", email = \"dragos.mold@gmail.com\", role = c(\"aut\")), person(\"Jeroen\", \"Ooms\", email = \"jeroen@berkeley.edu\", role = c(\"aut\")), person(\"Jacob\", \"Wujciak-Jens\", email = \"jacob@wujciak.de\", role = c(\"aut\")), person(\"Javier\", \"Luraschi\", email = \"javier@rstudio.com\", role = c(\"ctb\")), person(\"Karl\", \"Dunkle Werner\", email = \"karldw@users.noreply.github.com\", role = c(\"ctb\"), comment = c(ORCID = \"0000-0003-0523-7309\")), person(\"Jeffrey\", \"Wong\", email = \"jeffreyw@netflix.com\", role = c(\"ctb\")), person(\"Apache Arrow\", email = \"dev@arrow.apache.org\", role = c(\"aut\", \"cph\")) )", + "Description": "'Apache' 'Arrow' is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware. This package provides an interface to the 'Arrow C++' library.", + "Depends": [ + "R (>= 4.2)" + ], + "License": "Apache License (>= 2.0)", + "URL": "https://github.com/apache/arrow/, https://arrow.apache.org/docs/r/", + "BugReports": "https://github.com/apache/arrow/issues", + "Encoding": "UTF-8", + "Language": "en-US", + "SystemRequirements": "C++20; for AWS S3 support on Linux, libcurl and openssl (optional); cmake >= 3.26 (build-time only, and only for full source build)", + "Biarch": "true", + "Imports": [ + "assertthat", + "bit64 (>= 0.9-7)", + "glue", + "methods", + "purrr", + "R6", + "rlang (>= 1.0.0)", + "stats", + "tidyselect (>= 1.0.0)", + "utils", + "vctrs" + ], + "Config/testthat/edition": "3", + "Config/build/bootstrap": "TRUE", + "Suggests": [ + "blob", + "curl", + "cli", + "DBI", + "dbplyr", + "decor", + "distro", + "dplyr", + "duckdb (>= 0.2.8)", + "hms", + "jsonlite", + "knitr", + "lubridate", + "pillar", + "pkgload", + "reticulate", + "rmarkdown", + "stringi", + "stringr", + "sys", + "testthat (>= 3.3.0)", + "tibble", + "tzdb", + "withr" + ], + "LinkingTo": [ + "cpp11 (>= 0.4.2)" + ], + "Collate": "'arrowExports.R' 'enums.R' 'arrow-object.R' 'type.R' 'array-data.R' 'arrow-datum.R' 'array.R' 'arrow-info.R' 'arrow-package.R' 'arrow-tabular.R' 'buffer.R' 'chunked-array.R' 'io.R' 'compression.R' 'scalar.R' 'compute.R' 'config.R' 'csv.R' 'dataset.R' 'dataset-factory.R' 'dataset-format.R' 'dataset-partition.R' 'dataset-scan.R' 'dataset-write.R' 'dictionary.R' 'dplyr-across.R' 'dplyr-arrange.R' 'dplyr-by.R' 'dplyr-collect.R' 'dplyr-count.R' 'dplyr-datetime-helpers.R' 'dplyr-distinct.R' 'dplyr-eval.R' 'dplyr-filter.R' 'dplyr-funcs-agg.R' 'dplyr-funcs-augmented.R' 'dplyr-funcs-conditional.R' 'dplyr-funcs-datetime.R' 'dplyr-funcs-doc.R' 'dplyr-funcs-math.R' 'dplyr-funcs-simple.R' 'dplyr-funcs-string.R' 'dplyr-funcs-type.R' 'expression.R' 'dplyr-funcs.R' 'dplyr-glimpse.R' 'dplyr-group-by.R' 'dplyr-join.R' 'dplyr-mutate.R' 'dplyr-select.R' 'dplyr-slice.R' 'dplyr-summarize.R' 'dplyr-union.R' 'record-batch.R' 'table.R' 'dplyr.R' 'duckdb.R' 'extension.R' 'feather.R' 'field.R' 'filesystem.R' 'flight.R' 'install-arrow.R' 'ipc-stream.R' 'json.R' 'memory-pool.R' 'message.R' 'metadata.R' 'parquet.R' 'python.R' 'query-engine.R' 'record-batch-reader.R' 'record-batch-writer.R' 'reexports-tidyselect.R' 'schema.R' 'udf.R' 'util.R'", + "Config/roxygen2/version": "8.1.0", + "NeedsCompilation": "yes", + "Author": "Neal Richardson [aut], Ian Cook [aut], Nic Crane [aut], Dewey Dunnington [aut] (ORCID: ), Romain François [aut] (ORCID: ), Jonathan Keane [aut, cre], Bryce Mecum [aut], Dragoș Moldovan-Grünfeld [aut], Jeroen Ooms [aut], Jacob Wujciak-Jens [aut], Javier Luraschi [ctb], Karl Dunkle Werner [ctb] (ORCID: ), Jeffrey Wong [ctb], Apache Arrow [aut, cph]", + "Maintainer": "Jonathan Keane ", + "Repository": "CRAN" + }, + "assertthat": { + "Package": "assertthat", + "Version": "0.2.1", + "Source": "Repository", + "Title": "Easy Pre and Post Assertions", + "Authors@R": "person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", c(\"aut\", \"cre\"))", + "Description": "An extension to stopifnot() that makes it easy to declare the pre and post conditions that you code should satisfy, while also producing friendly error messages so that your users know what's gone wrong.", + "License": "GPL-3", + "Imports": [ + "tools" + ], + "Suggests": [ + "testthat", + "covr" + ], + "RoxygenNote": "6.0.1", + "Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r' 'assertions-scalar.R' 'assertions.r' 'base.r' 'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r' 'utils.r' 'validate-that.R'", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "audio": { + "Package": "audio", + "Version": "0.1-12", + "Source": "Repository", + "Title": "Audio Interface for R", + "Author": "Simon Urbanek [aut, cre, cph] (https://urbanek.nz, ORCID: )", + "Authors@R": "person(\"Simon\", \"Urbanek\", role=c(\"aut\",\"cre\",\"cph\"), email=\"Simon.Urbanek@r-project.org\", comment=c(\"https://urbanek.nz\", ORCID=\"0000-0003-2297-1732\"))", + "Maintainer": "Simon Urbanek ", + "Depends": [ + "R (>= 2.0.0)" + ], + "Description": "Interfaces to audio devices (mainly sample-based) from R to allow recording and playback of audio. Built-in devices include Windows MM, Mac OS X AudioUnits and PortAudio (the last one is very experimental).", + "License": "MIT + file LICENSE", + "URL": "http://www.rforge.net/audio/", + "BugReports": "https://github.com/s-u/audio/issues/", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "backports": { + "Package": "backports", + "Version": "1.5.1", + "Source": "Repository", + "Type": "Package", + "Title": "Reimplementations of Functions Introduced Since R-3.0.0", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Duncan\", \"Murdoch\", NULL, \"murdoch.duncan@gmail.com\", role = c(\"aut\")), person(\"R Core Team\", role = \"aut\"))", + "Maintainer": "Michel Lang ", + "Description": "Functions introduced or changed since R v3.0.0 are re-implemented in this package. The backports are conditionally exported in order to let R resolve the function name to either the implemented backport, or the respective base version, if available. Package developers can make use of new functions or arguments by selectively importing specific backports to support older installations.", + "URL": "https://github.com/r-lib/backports", + "BugReports": "https://github.com/r-lib/backports/issues", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Depends": [ + "R (>= 3.0.0)" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "Author": "Michel Lang [cre, aut] (ORCID: ), Duncan Murdoch [aut], R Core Team [aut]", + "Repository": "CRAN" + }, + "base64url": { + "Package": "base64url", + "Version": "1.4", + "Source": "Repository", + "Type": "Package", + "Title": "Fast and URL-Safe Base64 Encoder and Decoder", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(NULL, \"Apache Foundation\", NULL, NULL, role = c(\"ctb\", \"cph\")), person(NULL, \"Free Software Foundation\", NULL, NULL, role = c(\"ctb\", \"cph\")) )", + "Description": "In contrast to RFC3548, the 62nd character (\"+\") is replaced with \"-\", the 63rd character (\"/\") is replaced with \"_\". Furthermore, the encoder does not fill the string with trailing \"=\". The resulting encoded strings comply to the regular expression pattern \"[A-Za-z0-9_-]\" and thus are safe to use in URLs or for file names. The package also comes with a simple base32 encoder/decoder suited for case insensitive file systems.", + "URL": "https://github.com/mllg/base64url", + "BugReports": "https://github.com/mllg/base64url/issues", + "NeedsCompilation": "yes", + "License": "GPL-3", + "Encoding": "UTF-8", + "Imports": [ + "backports (>= 1.1.0)" + ], + "Suggests": [ + "base64enc", + "checkmate", + "knitr", + "microbenchmark", + "openssl", + "rmarkdown", + "testthat" + ], + "RoxygenNote": "6.0.1", + "VignetteBuilder": "knitr", + "Author": "Michel Lang [cre, aut] (), Apache Foundation [ctb, cph], Free Software Foundation [ctb, cph]", + "Maintainer": "Michel Lang ", + "Repository": "CRAN" + }, + "beepr": { + "Package": "beepr", + "Version": "2.0", + "Source": "Repository", + "Type": "Package", + "Title": "Easily Play Notification Sounds on any Platform", + "Encoding": "UTF-8", + "Date": "2024-07-06", + "Authors@R": "c( person(\"Rasmus\", \"Bååth\", email = \"rasmus.baath@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Amanda\", \"Dobbyn\", email = \"amanda.e.dobbyn@gmail.com\", role = \"ctb\"))", + "Description": "The main function of this package is beep(), with the purpose to make it easy to play notification sounds on whatever platform you are on. It is intended to be useful, for example, if you are running a long analysis in the background and want to know when it is ready.", + "License": "GPL-3", + "URL": "https://github.com/rasmusab/beepr", + "BugReports": "https://github.com/rasmusab/beepr/issues", + "Imports": [ + "audio" + ], + "RoxygenNote": "7.3.1", + "Suggests": [ + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Rasmus Bååth [aut, cre], Amanda Dobbyn [ctb]", + "Maintainer": "Rasmus Bååth ", + "Repository": "CRAN" + }, + "bit": { + "Package": "bit", + "Version": "4.6.0", + "Source": "Repository", + "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", + "Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Brian\", \"Ripley\", role = \"ctb\") )", + "Depends": [ + "R (>= 3.4.0)" + ], + "Suggests": [ + "testthat (>= 3.0.0)", + "roxygen2", + "knitr", + "markdown", + "rmarkdown", + "microbenchmark", + "bit64 (>= 4.0.0)", + "ff (>= 4.0.0)" + ], + "Description": "Provided are classes for boolean and skewed boolean vectors, fast boolean methods, fast unique and non-unique integer sorting, fast set operations on sorted and unsorted sets of integers, and foundations for ff (range index, compression, chunked processing).", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "URL": "https://github.com/r-lib/bit", + "VignetteBuilder": "knitr, rmarkdown", + "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Brian Ripley [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN" + }, + "bit64": { + "Package": "bit64", + "Version": "4.8.6", + "Source": "Repository", + "Title": "A S3 Class for Vectors of 64bit Integers", + "Authors@R": "c( person(\"Michael\", \"Chirico\", email=\"michaelchirico4@gmail.com\", role=c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role=\"aut\"), person(\"Leonardo\", \"Silvestri\", role=\"ctb\"), person(\"Ofek\", \"Shilon\", role=\"ctb\"), person(\"Christian\", \"Ullerich\", role=\"ctb\") )", + "Depends": [ + "R (>= 3.5.0)" + ], + "Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- active data exploration and manipulation and optionally leverage caching.", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "URL": "https://github.com/r-lib/bit64, https://bit64.r-lib.org", + "Encoding": "UTF-8", + "Imports": [ + "bit (>= 4.0.0)", + "graphics", + "methods", + "stats", + "utils" + ], + "Suggests": [ + "patrick (>= 0.3.0)", + "testthat (>= 3.3.0)", + "withr" + ], + "Config/testthat/edition": "3", + "Config/Needs/development": "patrick, testthat", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "yes", + "Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Leonardo Silvestri [ctb], Ofek Shilon [ctb], Christian Ullerich [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN" + }, + "boot": { + "Package": "boot", + "Version": "1.3-32", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-08-29", + "Authors@R": "c(person(\"Angelo\", \"Canty\", role = \"aut\", email = \"cantya@mcmaster.ca\", comment = \"author of original code for S\"), person(\"Brian\", \"Ripley\", role = c(\"aut\", \"trl\"), email = \"Brian.Ripley@R-project.org\", comment = \"conversion to R, maintainer 1999--2022, author of parallel support\"), person(\"Alessandra R.\", \"Brazzale\", role = c(\"ctb\", \"cre\"), email = \"brazzale@stat.unipd.it\", comment = \"minor bug fixes\"))", + "Maintainer": "Alessandra R. Brazzale ", + "Note": "Maintainers are not available to give advice on using a package they did not author.", + "Description": "Functions and datasets for bootstrapping from the book \"Bootstrap Methods and Their Application\" by A. C. Davison and D. V. Hinkley (1997, CUP), originally written by Angelo Canty for S.", + "Title": "Bootstrap Functions", + "Depends": [ + "R (>= 3.0.0)", + "graphics", + "stats" + ], + "Suggests": [ + "MASS", + "survival" + ], + "LazyData": "yes", + "ByteCompile": "yes", + "License": "Unlimited", + "NeedsCompilation": "no", + "Author": "Angelo Canty [aut] (author of original code for S), Brian Ripley [aut, trl] (conversion to R, maintainer 1999--2022, author of parallel support), Alessandra R. Brazzale [ctb, cre] (minor bug fixes)", + "Repository": "CRAN" + }, + "brio": { + "Package": "brio", + "Version": "1.1.5", + "Source": "Repository", + "Title": "Basic R Input Output", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Functions to handle basic input output, these functions always read and write UTF-8 (8-bit Unicode Transformation Format) files and provide more explicit control over line endings.", + "License": "MIT + file LICENSE", + "URL": "https://brio.r-lib.org, https://github.com/r-lib/brio", + "BugReports": "https://github.com/r-lib/brio/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "callr": { + "Package": "callr", + "Version": "3.8.0", + "Source": "Repository", + "Title": "Call R from R", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", + "Description": "It is sometimes useful to perform a computation in a separate R process, without affecting the current R process at all. This packages does exactly that.", + "License": "MIT + file LICENSE", + "URL": "https://callr.r-lib.org, https://github.com/r-lib/callr", + "BugReports": "https://github.com/r-lib/callr/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "otel (>= 0.2.0)", + "processx (>= 3.6.1)", + "R6", + "utils" + ], + "Suggests": [ + "asciicast (>= 2.3.1)", + "carrier", + "cli (>= 1.1.0)", + "otelsdk (>= 0.2.0)", + "ps", + "rprojroot", + "spelling", + "testthat (>= 3.2.0)", + "withr (>= 2.3.0)" + ], + "Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph, tibble, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-28", + "Encoding": "UTF-8", + "Language": "en-US", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre, cph] (ORCID: ), Winston Chang [aut], Posit Software, PBC [cph, fnd] (ROR: ), Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "class": { + "Package": "class", + "Version": "7.3-23", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-01", + "Depends": [ + "R (>= 3.0.0)", + "stats", + "utils" + ], + "Imports": [ + "MASS" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Various functions for classification, including k-nearest neighbour, Learning Vector Quantization and Self-Organizing Maps.", + "Title": "Functions for Classification", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "NeedsCompilation": "yes", + "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "cli": { + "Package": "cli", + "Version": "3.6.6", + "Source": "Repository", + "Title": "Helpers for Developing Command Line Interfaces", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"gabor@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and text styles as well.", + "License": "MIT + file LICENSE", + "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli", + "BugReports": "https://github.com/r-lib/cli/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "callr", + "covr", + "crayon", + "digest", + "glue (>= 1.6.0)", + "grDevices", + "htmltools", + "htmlwidgets", + "knitr", + "methods", + "processx", + "ps (>= 1.3.4.9000)", + "rlang (>= 1.0.2.9003)", + "rmarkdown", + "rprojroot", + "rstudioapi", + "testthat (>= 3.2.0)", + "tibble", + "whoami", + "withr" + ], + "Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], Salim Brüggemann [ctb] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "clipr": { + "Package": "clipr", + "Version": "0.8.1", + "Source": "Repository", + "Type": "Package", + "Title": "Read and Write from the System Clipboard", + "Authors@R": "c( person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4387-3384\")), person(\"Louis\", \"Maddox\", role = \"ctb\"), person(\"Steve\", \"Simpson\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\") )", + "Description": "Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.", + "License": "GPL-3", + "URL": "https://github.com/mdlincoln/clipr, http://matthewlincoln.net/clipr/", + "BugReports": "https://github.com/mdlincoln/clipr/issues", + "Imports": [ + "utils" + ], + "Suggests": [ + "covr", + "knitr", + "rmarkdown", + "rstudioapi (>= 0.5)", + "testthat (>= 2.0.0)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel (http://www.vergenet.net/~conrad/software/xsel/) for accessing the X11 clipboard, or wl-clipboard (https://github.com/bugaevc/wl-clipboard) for systems using Wayland.", + "NeedsCompilation": "no", + "Author": "Matthew Lincoln [aut, cre] (ORCID: ), Louis Maddox [ctb], Steve Simpson [ctb], Jennifer Bryan [ctb]", + "Maintainer": "Matthew Lincoln ", + "Repository": "CRAN" + }, + "cluster": { + "Package": "cluster", + "Version": "2.1.8.2", + "Source": "Repository", + "VersionNote": "Last CRAN: 2.1.8.1 on 2025-03-11; 2.1.8 on 2024-12-10; 2.1.7 on 2024-12-06; 2.1.6 on 2023-11-30;", + "Date": "2026-02-03", + "Priority": "recommended", + "Title": "\"Finding Groups in Data\": Cluster Analysis Extended Rousseeuw et al.", + "Description": "Methods for Cluster analysis. Much extended the original from Peter Rousseeuw, Anja Struyf and Mia Hubert, based on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".", + "Maintainer": "Martin Maechler ", + "Authors@R": "c(person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"), email=\"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\")) ,person(\"Peter\", \"Rousseeuw\", role=\"aut\", email=\"peter.rousseeuw@kuleuven.be\", comment = c(\"Fortran original\", ORCID = \"0000-0002-3807-5353\")) ,person(\"Anja\", \"Struyf\", role=\"aut\", comment= \"S original\") ,person(\"Mia\", \"Hubert\", role=\"aut\", email= \"Mia.Hubert@uia.ua.ac.be\", comment = c(\"S original\", ORCID = \"0000-0001-6398-4850\")) ,person(\"Kurt\", \"Hornik\", role=c(\"trl\", \"ctb\"), email=\"Kurt.Hornik@R-project.org\", comment=c(\"port to R; maintenance(1999-2000)\", ORCID=\"0000-0003-4198-9911\")) ,person(\"Matthias\", \"Studer\", role=\"ctb\") ,person(\"Pierre\", \"Roudier\", role=\"ctb\") ,person(\"Juan\", \"Gonzalez\", role=\"ctb\") ,person(\"Kamil\", \"Kozlowski\", role=\"ctb\") ,person(\"Erich\", \"Schubert\", role=\"ctb\", comment = c(\"fastpam options for pam()\", ORCID = \"0000-0001-9143-4880\")) ,person(\"Keefe\", \"Murphy\", role=\"ctb\", comment = \"volume.ellipsoid({d >= 3})\") #not yet ,person(\"Fischer-Rasmussen\", \"Kasper\", role = \"ctb\", comment = \"Gower distance for CLARA\") )", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "graphics", + "grDevices", + "stats", + "utils" + ], + "Suggests": [ + "MASS", + "Matrix" + ], + "SuggestsNote": "MASS: two examples using cov.rob() and mvrnorm(); Matrix tools for testing", + "Enhances": [ + "mvoutlier", + "fpc", + "ellipse", + "sfsmisc" + ], + "EnhancesNote": "xref-ed in man/*.Rd", + "LazyLoad": "yes", + "LazyData": "yes", + "ByteCompile": "yes", + "BuildResaveData": "no", + "License": "GPL (>= 2)", + "URL": "https://svn.r-project.org/R-packages/trunk/cluster/", + "NeedsCompilation": "yes", + "Author": "Martin Maechler [aut, cre] (ORCID: ), Peter Rousseeuw [aut] (Fortran original, ORCID: ), Anja Struyf [aut] (S original), Mia Hubert [aut] (S original, ORCID: ), Kurt Hornik [trl, ctb] (port to R; maintenance(1999-2000), ORCID: ), Matthias Studer [ctb], Pierre Roudier [ctb], Juan Gonzalez [ctb], Kamil Kozlowski [ctb], Erich Schubert [ctb] (fastpam options for pam(), ORCID: ), Keefe Murphy [ctb] (volume.ellipsoid({d >= 3}))", + "Repository": "CRAN" + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-20", + "Source": "Repository", + "Priority": "recommended", + "Author": "Luke Tierney ", + "Description": "Code analysis tools for R.", + "Title": "Code Analysis Tools for R", + "Depends": [ + "R (>= 2.1)" + ], + "Maintainer": "Luke Tierney ", + "URL": "https://gitlab.com/luke-tierney/codetools", + "License": "GPL", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.5", + "Source": "Repository", + "Title": "A C++11 Interface for R's C Interface", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a header only, C++11 interface to R's C interface. Compared to other approaches 'cpp11' strives to be safe against long jumps from the C API as well as C++ exceptions, conform to normal R function semantics and supports interaction with 'ALTREP' vectors.", + "License": "MIT + file LICENSE", + "URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11", + "BugReports": "https://github.com/r-lib/cpp11/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Suggests": [ + "bench", + "brio", + "callr", + "cli", + "covr", + "decor", + "desc", + "ggplot2", + "glue", + "knitr", + "lobstr", + "mockery", + "progress", + "rmarkdown", + "scales", + "Rcpp", + "testthat (>= 3.2.0)", + "tibble", + "utils", + "vctrs", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble, vctrs", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Davis Vaughan [aut, cre] (ORCID: ), Jim Hester [aut] (ORCID: ), Romain François [aut] (ORCID: ), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "crayon": { + "Package": "crayon", + "Version": "1.5.3", + "Source": "Repository", + "Title": "Colored Terminal Output", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The crayon package is now superseded. Please use the 'cli' package for new projects. Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' project.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon", + "BugReports": "https://github.com/r-lib/crayon/issues", + "Imports": [ + "grDevices", + "methods", + "utils" + ], + "Suggests": [ + "mockery", + "rstudioapi", + "testthat", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R' 'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.R' 'ansi-palette.R' 'combine.R' 'string.R' 'utils.R' 'crayon-package.R' 'disposable.R' 'enc-utils.R' 'has_ansi.R' 'has_color.R' 'link.R' 'styles.R' 'machinery.R' 'parts.R' 'print.R' 'style-var.R' 'show.R' 'string_operations.R'", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Brodie Gaslam [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "data.table": { + "Package": "data.table", + "Version": "1.18.6.1", + "Source": "Repository", + "Title": "Extension of `data.frame`", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "bit64 (>= 4.0.0)", + "bit (>= 4.0.4)", + "R.utils (>= 2.13.0)", + "xts", + "zoo (>= 1.8-1)", + "yaml", + "knitr", + "markdown" + ], + "Description": "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.", + "License": "MPL-2.0 | file LICENSE", + "URL": "https://r-datatable.com, https://Rdatatable.gitlab.io/data.table, https://github.com/Rdatatable/data.table", + "BugReports": "https://github.com/Rdatatable/data.table/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "ByteCompile": "TRUE", + "Authors@R": "c( person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")), person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"), person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"), person(\"Jan\",\"Gorecki\", role=\"aut\", email=\"j.gorecki@wit.edu.pl\"), person(\"Michael\",\"Chirico\", role=\"aut\", email=\"michaelchirico4@gmail.com\", comment = c(ORCID=\"0000-0003-0787-087X\")), person(\"Toby\",\"Hocking\", role=\"aut\", email=\"toby.hocking@r-project.org\", comment = c(ORCID=\"0000-0002-3146-0865\")), person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")), person(\"Ivan\", \"Krylov\", role=\"aut\", email=\"ikrylov@disroot.org\", comment = c(ORCID=\"0000-0002-0172-3812\")), person(\"Pasha\",\"Stetsenko\", role=\"ctb\"), person(\"Tom\",\"Short\", role=\"ctb\"), person(\"Steve\",\"Lianoglou\", role=\"ctb\"), person(\"Eduard\",\"Antonyan\", role=\"ctb\"), person(\"Markus\",\"Bonsch\", role=\"ctb\"), person(\"Hugh\",\"Parsonage\", role=\"ctb\"), person(\"Scott\",\"Ritchie\", role=\"ctb\"), person(\"Kun\",\"Ren\", role=\"ctb\"), person(\"Xianying\",\"Tan\", role=\"ctb\"), person(\"Rick\",\"Saporta\", role=\"ctb\"), person(\"Otto\",\"Seiskari\", role=\"ctb\"), person(\"Xianghui\",\"Dong\", role=\"ctb\"), person(\"Michel\",\"Lang\", role=\"ctb\"), person(\"Watal\",\"Iwasaki\", role=\"ctb\"), person(\"Seth\",\"Wenchel\", role=\"ctb\"), person(\"Karl\",\"Broman\", role=\"ctb\"), person(\"Tobias\",\"Schmidt\", role=\"ctb\"), person(\"David\",\"Arenburg\", role=\"ctb\"), person(\"Ethan\",\"Smith\", role=\"ctb\"), person(\"Francois\",\"Cocquemas\", role=\"ctb\"), person(\"Matthieu\",\"Gomez\", role=\"ctb\"), person(\"Philippe\",\"Chataignon\", role=\"ctb\"), person(\"Nello\",\"Blaser\", role=\"ctb\"), person(\"Dmitry\",\"Selivanov\", role=\"ctb\"), person(\"Andrey\",\"Riabushenko\", role=\"ctb\"), person(\"Cheng\",\"Lee\", role=\"ctb\"), person(\"Declan\",\"Groves\", role=\"ctb\"), person(\"Daniel\",\"Possenriede\", role=\"ctb\"), person(\"Felipe\",\"Parages\", role=\"ctb\"), person(\"Denes\",\"Toth\", role=\"ctb\"), person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"), person(\"Ayappan\",\"Perumal\", role=\"ctb\"), person(\"James\",\"Sams\", role=\"ctb\"), person(\"Martin\",\"Morgan\", role=\"ctb\"), person(\"Michael\",\"Quinn\", role=\"ctb\"), person(given=\"@javrucebo\", role=\"ctb\", comment=\"GitHub user\"), person(\"Marc\",\"Halperin\", role=\"ctb\"), person(\"Roy\",\"Storey\", role=\"ctb\"), person(\"Manish\",\"Saraswat\", role=\"ctb\"), person(\"Morgan\",\"Jacob\", role=\"ctb\"), person(\"Michael\",\"Schubmehl\", role=\"ctb\"), person(\"Davis\",\"Vaughan\", role=\"ctb\"), person(\"Leonardo\",\"Silvestri\", role=\"ctb\"), person(\"Jim\",\"Hester\", role=\"ctb\"), person(\"Anthony\",\"Damico\", role=\"ctb\"), person(\"Sebastian\",\"Freundt\", role=\"ctb\"), person(\"David\",\"Simons\", role=\"ctb\"), person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"), person(\"Cole\",\"Miller\", role=\"ctb\"), person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"), person(\"Vaclav\",\"Tlapak\", role=\"ctb\"), person(\"Kevin\",\"Ushey\", role=\"ctb\"), person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"), person(\"Tony\",\"Fischetti\", role=\"ctb\"), person(\"Ofek\",\"Shilon\", role=\"ctb\"), person(\"Vadim\",\"Khotilovich\", role=\"ctb\"), person(\"Hadley\",\"Wickham\", role=\"ctb\"), person(\"Bennet\",\"Becker\", role=\"ctb\"), person(\"Kyle\",\"Haynes\", role=\"ctb\"), person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"), person(\"Olivier\",\"Delmarcell\", role=\"ctb\"), person(\"Josh\",\"O'Brien\", role=\"ctb\"), person(\"Dereck\",\"Mezquita\", role=\"ctb\", comment = c(ORCID=\"0000-0002-9307-6762\")), person(\"Michael\",\"Czekanski\", role=\"ctb\"), person(\"Dmitry\", \"Shemetov\", role=\"ctb\"), person(\"Nitish\", \"Jha\", role=\"ctb\"), person(\"Joshua\", \"Wu\", role=\"ctb\"), person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"), person(\"Anirban\", \"Chetia\", role=\"ctb\"), person(\"Doris\", \"Amoakohene\", role=\"ctb\"), person(\"Angel\", \"Feliz\", role=\"ctb\"), person(\"Michael\",\"Young\", role=\"ctb\"), person(\"Mark\", \"Seeto\", role=\"ctb\"), person(\"Philippe\", \"Grosjean\", role=\"ctb\"), person(\"Vincent\", \"Runge\", role=\"ctb\"), person(\"Christian\", \"Wia\", role=\"ctb\"), person(\"Elise\", \"Maigné\", role=\"ctb\"), person(\"Vincent\", \"Rocher\", role=\"ctb\"), person(\"Vijay\", \"Lulla\", role=\"ctb\"), person(\"Aljaž\", \"Sluga\", role=\"ctb\"), person(\"Bill\", \"Evans\", role=\"ctb\"), person(\"Reino\", \"Bruner\", role=\"ctb\"), person(given=\"@badasahog\", role=\"ctb\", comment=\"GitHub user\"), person(\"Vinit\", \"Thakur\", role=\"ctb\"), person(\"Mukul\", \"Kumar\", role=\"ctb\"), person(\"Ildikó\", \"Czeller\", role=\"ctb\"), person(\"Manmita\", \"Das\", role=\"ctb\"), person(\"Tarun\", \"Thammisetty\", role=\"ctb\"), person(\"Marco\", \"Colombo\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6672-0623\")), person(\"Tim\", \"Taylor\", role=\"ctb\", comment = c(ORCID = \"0000-0002-8587-7113\")) )", + "NeedsCompilation": "yes", + "Author": "Tyson Barrett [aut, cre] (ORCID: ), Matt Dowle [aut], Arun Srinivasan [aut], Jan Gorecki [aut], Michael Chirico [aut] (ORCID: ), Toby Hocking [aut] (ORCID: ), Benjamin Schwendinger [aut] (ORCID: ), Ivan Krylov [aut] (ORCID: ), Pasha Stetsenko [ctb], Tom Short [ctb], Steve Lianoglou [ctb], Eduard Antonyan [ctb], Markus Bonsch [ctb], Hugh Parsonage [ctb], Scott Ritchie [ctb], Kun Ren [ctb], Xianying Tan [ctb], Rick Saporta [ctb], Otto Seiskari [ctb], Xianghui Dong [ctb], Michel Lang [ctb], Watal Iwasaki [ctb], Seth Wenchel [ctb], Karl Broman [ctb], Tobias Schmidt [ctb], David Arenburg [ctb], Ethan Smith [ctb], Francois Cocquemas [ctb], Matthieu Gomez [ctb], Philippe Chataignon [ctb], Nello Blaser [ctb], Dmitry Selivanov [ctb], Andrey Riabushenko [ctb], Cheng Lee [ctb], Declan Groves [ctb], Daniel Possenriede [ctb], Felipe Parages [ctb], Denes Toth [ctb], Mus Yaramaz-David [ctb], Ayappan Perumal [ctb], James Sams [ctb], Martin Morgan [ctb], Michael Quinn [ctb], @javrucebo [ctb] (GitHub user), Marc Halperin [ctb], Roy Storey [ctb], Manish Saraswat [ctb], Morgan Jacob [ctb], Michael Schubmehl [ctb], Davis Vaughan [ctb], Leonardo Silvestri [ctb], Jim Hester [ctb], Anthony Damico [ctb], Sebastian Freundt [ctb], David Simons [ctb], Elliott Sales de Andrade [ctb], Cole Miller [ctb], Jens Peder Meldgaard [ctb], Vaclav Tlapak [ctb], Kevin Ushey [ctb], Dirk Eddelbuettel [ctb], Tony Fischetti [ctb], Ofek Shilon [ctb], Vadim Khotilovich [ctb], Hadley Wickham [ctb], Bennet Becker [ctb], Kyle Haynes [ctb], Boniface Christian Kamgang [ctb], Olivier Delmarcell [ctb], Josh O'Brien [ctb], Dereck Mezquita [ctb] (ORCID: ), Michael Czekanski [ctb], Dmitry Shemetov [ctb], Nitish Jha [ctb], Joshua Wu [ctb], Iago Giné-Vázquez [ctb], Anirban Chetia [ctb], Doris Amoakohene [ctb], Angel Feliz [ctb], Michael Young [ctb], Mark Seeto [ctb], Philippe Grosjean [ctb], Vincent Runge [ctb], Christian Wia [ctb], Elise Maigné [ctb], Vincent Rocher [ctb], Vijay Lulla [ctb], Aljaž Sluga [ctb], Bill Evans [ctb], Reino Bruner [ctb], @badasahog [ctb] (GitHub user), Vinit Thakur [ctb], Mukul Kumar [ctb], Ildikó Czeller [ctb], Manmita Das [ctb], Tarun Thammisetty [ctb], Marco Colombo [ctb] (ORCID: ), Tim Taylor [ctb] (ORCID: )", + "Maintainer": "Tyson Barrett ", + "Repository": "CRAN" + }, + "dcurver": { + "Package": "dcurver", + "Version": "0.9.3", + "Source": "Repository", + "Date": "2025-10-24", + "Title": "Utility Functions for Davidian Curves", + "Authors@R": "person(given = \"Ozan\", family = \"Öğreden\", role = c(\"aut\", \"cre\"), email = \"oguzhanogreden@protonmail.com\")", + "Description": "A Davidian curve defines a seminonparametric density, whose shape and flexibility can be tuned by easy to estimate parameters. Since a special case of a Davidian curve is the standard normal density, Davidian curves can be used for relaxing normality assumption in statistical applications (Zhang & Davidian, 2001) . This package provides the density function, the gradient of the loglikelihood and a random generator for Davidian curves.", + "License": "GPL-3", + "URL": "https://github.com/oguzhanogreden/dcurver", + "BugReports": "https://github.com/oguzhanogreden/dcurver/issues", + "Imports": [ + "Rcpp (>= 0.12.14)" + ], + "LinkingTo": [ + "Rcpp", + "RcppArmadillo" + ], + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "Suggests": [ + "testthat" + ], + "Language": "en-US", + "NeedsCompilation": "yes", + "Author": "Ozan Öğreden [aut, cre]", + "Maintainer": "Ozan Öğreden ", + "Repository": "CRAN" + }, + "desc": { + "Package": "desc", + "Version": "1.4.3", + "Source": "Repository", + "Title": "Manipulate DESCRIPTION Files", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"), person(\"Maëlle\", \"Salmon\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Maintainer": "Gábor Csárdi ", + "Description": "Tools to read, write, create, and manipulate DESCRIPTION files. It is intended for packages that create or manipulate other packages.", + "License": "MIT + file LICENSE", + "URL": "https://desc.r-lib.org/, https://github.com/r-lib/desc", + "BugReports": "https://github.com/r-lib/desc/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli", + "R6", + "utils" + ], + "Suggests": [ + "callr", + "covr", + "gh", + "spelling", + "testthat", + "whoami", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "Collate": "'assertions.R' 'authors-at-r.R' 'built.R' 'classes.R' 'collate.R' 'constants.R' 'deps.R' 'desc-package.R' 'description.R' 'encoding.R' 'find-package-root.R' 'latex.R' 'non-oo-api.R' 'package-archives.R' 'read.R' 'remotes.R' 'str.R' 'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R' 'version.R'", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Kirill Müller [aut], Jim Hester [aut], Maëlle Salmon [ctb] (), Posit Software, PBC [cph, fnd]", + "Repository": "CRAN" + }, + "diffobj": { + "Package": "diffobj", + "Version": "0.3.9", + "Source": "Repository", + "Type": "Package", + "Title": "Diffs for R Objects", + "Description": "Generate a colorized diff of two R objects for an intuitive visualization of their differences.", + "Authors@R": "c( person( \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person( \"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\", role=c(\"ctb\", \"cph\"), comment=\"Original C implementation of Myers Diff Algorithm\"))", + "Depends": [ + "R (>= 4.1.0)" + ], + "License": "GPL-2 | GPL-3", + "URL": "https://github.com/brodieG/diffobj", + "BugReports": "https://github.com/brodieG/diffobj/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Suggests": [ + "knitr", + "rmarkdown" + ], + "Collate": "'capt.R' 'options.R' 'pager.R' 'check.R' 'finalizer.R' 'misc.R' 'html.R' 'styles.R' 's4.R' 'core.R' 'diff.R' 'get.R' 'guides.R' 'hunks.R' 'layout.R' 'myerssimple.R' 'rdiff.R' 'rds.R' 'set.R' 'subset.R' 'summmary.R' 'system.R' 'text.R' 'tochar.R' 'trim.R' 'word.R'", + "Imports": [ + "crayon (>= 1.3.2)", + "tools", + "methods", + "utils", + "stats" + ], + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "yes", + "Author": "Brodie Gaslam [aut, cre], Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff Algorithm)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN" + }, + "digest": { + "Package": "digest", + "Version": "0.6.39", + "Source": "Repository", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Antoine\", \"Lucas\", role=\"ctb\", comment = c(ORCID = \"0000-0002-8059-9767\")), person(\"Jarek\", \"Tuszynski\", role=\"ctb\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")), person(\"Mario\", \"Frasca\", role=\"ctb\"), person(\"Bryan\", \"Lewis\", role=\"ctb\"), person(\"Murray\", \"Stokely\", role=\"ctb\"), person(\"Hannes\", \"Muehleisen\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8552-0029\")), person(\"Duncan\", \"Murdoch\", role=\"ctb\"), person(\"Jim\", \"Hester\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")), person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")), person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Viliam\", \"Simko\", role=\"ctb\"), person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")), person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")), person(\"Matthew\", \"de Queljoe\", role=\"ctb\"), person(\"Dmitry\", \"Selivanov\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0492-6647\")), person(\"Ion\", \"Suruceanu\", role=\"ctb\", comment = c(ORCID = \"0009-0005-6446-4909\")), person(\"Bill\", \"Denney\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(\"Dirk\", \"Schumacher\", role=\"ctb\"), person(\"András\", \"Svraka\", role=\"ctb\", comment = c(ORCID = \"0009-0008-8480-1329\")), person(\"Sergey\", \"Fedorov\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5970-7233\")), person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")), person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")), person(\"Kevin\", \"Tappe\", role=\"ctb\"), person(\"Harris\", \"McGehee\", role=\"ctb\"), person(\"Tim\", \"Mastny\", role=\"ctb\"), person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")), person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")), person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")), person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")), person(\"Sebastian\", \"Campbell\", role=\"ctb\", comment = c(ORCID = \"0009-0000-5948-4503\")), person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")), person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")), person(\"Kevin\", \"Ushey\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Carl\", \"Pearson\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0701-7860\")))", + "Date": "2025-11-19", + "Title": "Create Compact Hash Digests of R Objects", + "Description": "Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128' algorithms) permitting easy comparison of R language objects, as well as functions such as 'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.", + "URL": "https://github.com/eddelbuettel/digest, https://eddelbuettel.github.io/digest/, https://dirk.eddelbuettel.com/code/digest.html", + "BugReports": "https://github.com/eddelbuettel/digest/issues", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "utils" + ], + "License": "GPL (>= 2)", + "Suggests": [ + "tinytest", + "simplermarkdown", + "rbenchmark" + ], + "VignetteBuilder": "simplermarkdown", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Antoine Lucas [ctb] (ORCID: ), Jarek Tuszynski [ctb], Henrik Bengtsson [ctb] (ORCID: ), Simon Urbanek [ctb] (ORCID: ), Mario Frasca [ctb], Bryan Lewis [ctb], Murray Stokely [ctb], Hannes Muehleisen [ctb] (ORCID: ), Duncan Murdoch [ctb], Jim Hester [ctb] (ORCID: ), Wush Wu [ctb] (ORCID: ), Qiang Kou [ctb] (ORCID: ), Thierry Onkelinx [ctb] (ORCID: ), Michel Lang [ctb] (ORCID: ), Viliam Simko [ctb], Kurt Hornik [ctb] (ORCID: ), Radford Neal [ctb] (ORCID: ), Kendon Bell [ctb] (ORCID: ), Matthew de Queljoe [ctb], Dmitry Selivanov [ctb] (ORCID: ), Ion Suruceanu [ctb] (ORCID: ), Bill Denney [ctb] (ORCID: ), Dirk Schumacher [ctb], András Svraka [ctb] (ORCID: ), Sergey Fedorov [ctb] (ORCID: ), Will Landau [ctb] (ORCID: ), Floris Vanderhaeghe [ctb] (ORCID: ), Kevin Tappe [ctb], Harris McGehee [ctb], Tim Mastny [ctb], Aaron Peikert [ctb] (ORCID: ), Mark van der Loo [ctb] (ORCID: ), Chris Muir [ctb] (ORCID: ), Moritz Beller [ctb] (ORCID: ), Sebastian Campbell [ctb] (ORCID: ), Winston Chang [ctb] (ORCID: ), Dean Attali [ctb] (ORCID: ), Michael Chirico [ctb] (ORCID: ), Kevin Ushey [ctb] (ORCID: ), Carl Pearson [ctb] (ORCID: )", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "A Grammar of Data Manipulation", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A fast, consistent tool for working with data frame like objects, both in memory and out of memory.", + "License": "MIT + file LICENSE", + "URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr", + "BugReports": "https://github.com/tidyverse/dplyr/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "cli (>= 3.6.2)", + "generics", + "glue (>= 1.3.2)", + "lifecycle (>= 1.0.5)", + "magrittr (>= 1.5)", + "methods", + "pillar (>= 1.9.0)", + "R6", + "rlang (>= 1.1.7)", + "tibble (>= 3.2.0)", + "tidyselect (>= 1.2.0)", + "utils", + "vctrs (>= 0.7.1)" + ], + "Suggests": [ + "broom", + "covr", + "DBI", + "dbplyr (>= 2.2.1)", + "ggplot2", + "knitr", + "Lahman", + "lobstr", + "nycflights13", + "purrr", + "rmarkdown", + "RSQLite", + "stringi (>= 1.7.6)", + "testthat (>= 3.1.5)", + "tidyr (>= 1.3.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Romain François [aut] (ORCID: ), Lionel Henry [aut], Kirill Müller [aut] (ORCID: ), Davis Vaughan [aut] (ORCID: ), Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "e1071": { + "Package": "e1071", + "Version": "1.7-17", + "Source": "Repository", + "Title": "Misc Functions of the Department of Statistics, Probability Theory Group (Formerly: E1071), TU Wien", + "Imports": [ + "graphics", + "grDevices", + "class", + "stats", + "methods", + "utils", + "proxy" + ], + "Suggests": [ + "cluster", + "mlbench", + "nnet", + "randomForest", + "rpart", + "SparseM", + "xtable", + "Matrix", + "MASS", + "slam" + ], + "Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"), email = \"David.Meyer@R-project.org\", comment = c(ORCID = \"0000-0002-5196-3048\")), person(given = \"Evgenia\", family = \"Dimitriadou\", role = c(\"aut\",\"cph\")), person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(given = \"Andreas\", family = \"Weingessel\", role = \"aut\"), person(given = \"Friedrich\", family = \"Leisch\", role = \"aut\"), person(given = \"Chih-Chung\", family = \"Chang\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"), person(given = \"Chih-Chen\", family = \"Lin\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"))", + "Description": "Functions for latent class analysis, short time Fourier transform, fuzzy clustering, support vector machines, shortest path computation, bagged clustering, naive Bayes classifier, generalized k-nearest neighbour ...", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "NeedsCompilation": "yes", + "Author": "David Meyer [aut, cre] (ORCID: ), Evgenia Dimitriadou [aut, cph], Kurt Hornik [aut] (ORCID: ), Andreas Weingessel [aut], Friedrich Leisch [aut], Chih-Chung Chang [ctb, cph] (libsvm C++-code), Chih-Chen Lin [ctb, cph] (libsvm C++-code)", + "Maintainer": "David Meyer ", + "Repository": "CRAN" + }, + "evaluate": { + "Package": "evaluate", + "Version": "1.0.5", + "Source": "Repository", + "Type": "Package", + "Title": "Parsing and Evaluation Tools that Provide More Details than the Default", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Yihui\", \"Xie\", role = \"aut\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Michael\", \"Lawrence\", role = \"ctb\"), person(\"Thomas\", \"Kluyver\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Adam\", \"Ryczkowski\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Michel\", \"Lang\", role = \"ctb\"), person(\"Karolis\", \"Koncevičius\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Parsing and evaluation tools that make it easy to recreate the command line behaviour of R.", + "License": "MIT + file LICENSE", + "URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate", + "BugReports": "https://github.com/r-lib/evaluate/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "callr", + "covr", + "ggplot2 (>= 3.3.6)", + "lattice", + "methods", + "pkgload", + "ragg (>= 1.4.0)", + "rlang (>= 1.1.5)", + "knitr", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Yihui Xie [aut] (ORCID: ), Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "forcats": { + "Package": "forcats", + "Version": "1.0.1", + "Source": "Repository", + "Title": "Tools for Working with Categorical Variables (Factors)", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Helpers for reordering factor levels (including moving specified levels to front, ordering by first appearance, reversing, and randomly shuffling), and tools for modifying factor levels (including collapsing rare levels into other, 'anonymising', and manually 'recoding').", + "License": "MIT + file LICENSE", + "URL": "https://forcats.tidyverse.org/, https://github.com/tidyverse/forcats", + "BugReports": "https://github.com/tidyverse/forcats/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "lifecycle", + "magrittr", + "rlang (>= 1.0.0)", + "tibble" + ], + "Suggests": [ + "covr", + "dplyr", + "ggplot2", + "knitr", + "readr", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "foreign": { + "Package": "foreign", + "Version": "0.8-91", + "Source": "Repository", + "Priority": "recommended", + "Date": "2026-01-29", + "Title": "Read Data Stored by 'Minitab', 'S', 'SAS', 'SPSS', 'Stata', 'Systat', 'Weka', 'dBase', ...", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "methods", + "utils", + "stats" + ], + "Authors@R": "c( person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cph\", \"cre\"), comment = c(ROR = \"02zz1nj61\")), person(\"Roger\", \"Bivand\", role = c(\"ctb\", \"cph\")), person(c(\"Vincent\", \"J.\"), \"Carey\", role = c(\"ctb\", \"cph\")), person(\"Saikat\", \"DebRoy\", role = c(\"ctb\", \"cph\")), person(\"Stephen\", \"Eglen\", role = c(\"ctb\", \"cph\")), person(\"Rajarshi\", \"Guha\", role = c(\"ctb\", \"cph\")), person(\"Swetlana\", \"Herbrandt\", role = \"ctb\"), person(\"Nicholas\", \"Lewin-Koh\", role = c(\"ctb\", \"cph\")), person(\"Mark\", \"Myatt\", role = c(\"ctb\", \"cph\")), person(\"Michael\", \"Nelson\", role = \"ctb\"), person(\"Ben\", \"Pfaff\", role = \"ctb\"), person(\"Brian\", \"Quistorff\", role = \"ctb\"), person(\"Frank\", \"Warmerdam\", role = c(\"ctb\", \"cph\")), person(\"Stephen\", \"Weigand\", role = c(\"ctb\", \"cph\")), person(\"Free Software Foundation, Inc.\", role = \"cph\"))", + "Contact": "see 'MailingList'", + "Copyright": "see file COPYRIGHTS", + "Description": "Reading and writing data stored by some versions of 'Epi Info', 'Minitab', 'S', 'SAS', 'SPSS', 'Stata', 'Systat', 'Weka', and for reading and writing some 'dBase' files.", + "ByteCompile": "yes", + "Biarch": "yes", + "License": "GPL (>= 2)", + "BugReports": "https://bugs.r-project.org", + "MailingList": "R-help@r-project.org", + "URL": "https://svn.r-project.org/R-packages/trunk/foreign/", + "NeedsCompilation": "yes", + "Author": "R Core Team [aut, cph, cre] (ROR: ), Roger Bivand [ctb, cph], Vincent J. Carey [ctb, cph], Saikat DebRoy [ctb, cph], Stephen Eglen [ctb, cph], Rajarshi Guha [ctb, cph], Swetlana Herbrandt [ctb], Nicholas Lewin-Koh [ctb, cph], Mark Myatt [ctb, cph], Michael Nelson [ctb], Ben Pfaff [ctb], Brian Quistorff [ctb], Frank Warmerdam [ctb, cph], Stephen Weigand [ctb, cph], Free Software Foundation, Inc. [cph]", + "Maintainer": "R Core Team ", + "Repository": "CRAN" + }, + "fs": { + "Package": "fs", + "Version": "2.1.0", + "Source": "Repository", + "Title": "Cross-Platform File System Operations Based on 'libuv'", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", , \"jeroenooms@gmail.com\", role = \"cre\"), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "A cross-platform interface to file system operations, built on top of the 'libuv' C library.", + "License": "MIT + file LICENSE", + "URL": "https://fs.r-lib.org, https://github.com/r-lib/fs", + "BugReports": "https://github.com/r-lib/fs/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "covr", + "crayon", + "knitr", + "pillar (>= 1.0.0)", + "rmarkdown", + "spelling", + "testthat (>= 3.0.0)", + "tibble (>= 1.1.0)", + "vctrs (>= 0.3.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "SystemRequirements": "libuv: libuv-devel (rpm) or libuv1-dev (deb). Alternatively to build the vendored libuv 'cmake' is required. GNU make.", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut], Hadley Wickham [aut], Gábor Csárdi [aut], Jeroen Ooms [cre], libuv project contributors [cph] (libuv library), Joyent, Inc. and other Node contributors [cph] (libuv library), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "future": { + "Package": "future", + "Version": "1.75.0", + "Source": "Repository", + "Title": "Unified Parallel and Distributed Processing in R for Everyone", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "digest", + "globals (>= 0.18.0)", + "listenv (>= 0.8.0)", + "parallel", + "parallelly (>= 1.44.0)", + "tools", + "utils" + ], + "Suggests": [ + "methods", + "RhpcBLASctl", + "R.rsp", + "markdown" + ], + "VignetteBuilder": "R.rsp", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")))", + "Description": "The purpose of this package is to provide a lightweight and unified Future API for sequential and parallel processing of R expression via futures. The simplest way to evaluate an expression in parallel is to use `x %<-% { expression }` with `plan(multisession)`. This package implements sequential, multicore, multisession, and cluster futures. With these, R expressions can be evaluated on the local machine, in parallel a set of local machines, or distributed on a mix of local and remote machines. Extensions to this package implement additional backends for processing futures via compute cluster schedulers, etc. Because of its unified API, there is no need to modify any code in order switch from sequential on the local machine to, say, distributed processing on a remote compute cluster. Another strength of this package is that global variables and functions are automatically identified and exported as needed, making it straightforward to tweak existing code to make use of futures.", + "License": "Apache License (>= 2)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://future.futureverse.org, https://github.com/futureverse/future", + "BugReports": "https://github.com/futureverse/future/issues", + "Language": "en-US", + "Encoding": "UTF-8", + "Collate": "'000.bquote.R' '000.import.R' '000.re-exports.R' '009.deprecation.R' '010.tweakable.R' '010.utils-parallelly.R' 'backend_api-01-FutureBackend-class.R' 'backend_api-03.MultiprocessFutureBackend-class.R' 'backend_api-11.ClusterFutureBackend-class.R' 'backend_api-11.MulticoreFutureBackend-class.R' 'backend_api-11.SequentialFutureBackend-class.R' 'backend_api-13.MultisessionFutureBackend-class.R' 'backend_api-ConstantFuture-class.R' 'backend_api-Future-class.R' 'backend_api-FutureRegistry.R' 'backend_api-UniprocessFuture-class.R' 'backend_api-evalFuture.R' 'core_api-cancel.R' 'core_api-future.R' 'core_api-reset.R' 'core_api-resolved.R' 'core_api-value.R' 'delayed_api-futureAssign.R' 'delayed_api-futureOf.R' 'demo_api-mandelbrot.R' 'infix_api-01-futureAssign_OP.R' 'infix_api-02-globals_OP.R' 'infix_api-03-seed_OP.R' 'infix_api-04-stdout_OP.R' 'infix_api-05-conditions_OP.R' 'infix_api-06-lazy_OP.R' 'infix_api-07-label_OP.R' 'infix_api-08-plan_OP.R' 'infix_api-09-tweak_OP.R' 'protected_api-FutureCondition-class.R' 'protected_api-FutureGlobals-class.R' 'protected_api-FutureResult-class.R' 'protected_api-futures.R' 'protected_api-globals.R' 'protected_api-journal.R' 'protected_api-resolve.R' 'protected_api-result.R' 'protected_api-signalConditions.R' 'testme.R' 'utils-basic.R' 'utils-conditions.R' 'utils-connections.R' 'utils-debug.R' 'utils-immediateCondition.R' 'utils-marshalling.R' 'utils-objectSize.R' 'utils-options.R' 'utils-prune_pkg_code.R' 'utils-registerClusterTypes.R' 'utils-rng_utils.R' 'utils-signalEarly.R' 'utils-stealth_sample.R' 'utils-sticky_globals.R' 'utils-tweakExpression.R' 'utils-uuid.R' 'utils-whichIndex.R' 'utils_api-backtrace.R' 'utils_api-capture_journals.R' 'utils_api-futureCall.R' 'utils_api-futureSessionInfo.R' 'utils_api-makeClusterFuture.R' 'utils_api-minifuture.R' 'utils_api-nbrOfWorkers.R' 'utils_api-plan.R' 'utils_api-plan-with.R' 'utils_api-sessionDetails.R' 'utils_api-tweak.R' 'zzz.R'", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: )", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "future.apply": { + "Package": "future.apply", + "Version": "1.20.2", + "Source": "Repository", + "Title": "Apply Function to Elements in Parallel using Futures", + "Depends": [ + "R (>= 3.2.0)", + "future (>= 1.49.0)" + ], + "Imports": [ + "globals", + "parallel", + "utils" + ], + "Suggests": [ + "datasets", + "stats", + "tools", + "listenv", + "R.rsp", + "markdown" + ], + "VignetteBuilder": "R.rsp", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"R Core Team\", role = c(\"cph\", \"ctb\")))", + "Description": "Implementations of apply(), by(), eapply(), lapply(), Map(), .mapply(), mapply(), replicate(), sapply(), tapply(), and vapply() that can be resolved using any future-supported backend, e.g. parallel on the local machine or distributed on a compute cluster. These future_*apply() functions come with the same pros and cons as the corresponding base-R *apply() functions but with the additional feature of being able to be processed via the future framework .", + "License": "GPL (>= 2)", + "LazyLoad": "TRUE", + "URL": "https://future.apply.futureverse.org, https://github.com/futureverse/future.apply", + "BugReports": "https://github.com/futureverse/future.apply/issues", + "Language": "en-US", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: ), R Core Team [cph, ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "generics": { + "Package": "generics", + "Version": "0.1.4", + "Source": "Repository", + "Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )", + "Description": "In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics.", + "License": "MIT + file LICENSE", + "URL": "https://generics.r-lib.org, https://github.com/r-lib/generics", + "BugReports": "https://github.com/r-lib/generics/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "covr", + "pkgload", + "testthat (>= 3.0.0)", + "tibble", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Max Kuhn [aut], Davis Vaughan [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "globals": { + "Package": "globals", + "Version": "0.19.1", + "Source": "Repository", + "Depends": [ + "R (>= 3.1.2)" + ], + "Imports": [ + "codetools" + ], + "Title": "Identify Global Objects in R Expressions", + "Authors@R": "c( person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email=\"henrikb@braju.com\"), person(\"Davis\",\"Vaughan\", role=\"ctb\", email=\"davis@posit.co\"))", + "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions by code inspection using various strategies (ordered, liberal, conservative, or deep-first search). The objective of this package is to make it as simple as possible to identify global objects for the purpose of exporting them in parallel, distributed compute environments.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "Language": "en-US", + "Encoding": "UTF-8", + "URL": "https://globals.futureverse.org, https://github.com/futureverse/globals", + "BugReports": "https://github.com/futureverse/globals/issues", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph], Davis Vaughan [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "glue": { + "Package": "glue", + "Version": "1.8.1", + "Source": "Repository", + "Title": "Interpreted String Literals", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "An implementation of interpreted string literals, inspired by Python's Literal String Interpolation and Docstrings and Julia's Triple-Quoted String Literals .", + "License": "MIT + file LICENSE", + "URL": "https://glue.tidyverse.org/, https://github.com/tidyverse/glue", + "BugReports": "https://github.com/tidyverse/glue/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "crayon", + "DBI (>= 1.2.0)", + "dplyr", + "knitr", + "rlang", + "rmarkdown", + "RSQLite", + "testthat (>= 3.2.0)", + "vctrs (>= 0.3.0)", + "waldo (>= 0.5.3)", + "withr" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "bench, forcats, ggbeeswarm, ggplot2, R.utils, rprintf, tidyr, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2026-04-16", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (ORCID: ), Jennifer Bryan [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "gridExtra": { + "Package": "gridExtra", + "Version": "2.3.1", + "Source": "Repository", + "Authors@R": "c(person(\"Baptiste\", \"Auguie\", email = \"baptiste.auguie@vuw.ac.nz\", role = c(\"aut\", \"cre\")), person(\"Anton\", \"Antonov\", email = \"tonytonov@gmail.com\", role = c(\"ctb\")))", + "License": "GPL (>= 2)", + "Title": "Miscellaneous Functions for \"Grid\" Graphics", + "Type": "Package", + "Description": "Provides a number of user-level functions to work with \"grid\" graphics, notably to arrange multiple grid-based plots on a page, and draw tables.", + "VignetteBuilder": "knitr", + "Imports": [ + "gtable", + "grid", + "grDevices", + "graphics", + "utils" + ], + "Suggests": [ + "ggplot2", + "egg", + "lattice", + "knitr", + "testthat" + ], + "RoxygenNote": "6.0.1", + "NeedsCompilation": "no", + "Author": "Baptiste Auguie [aut, cre], Anton Antonov [ctb]", + "Maintainer": "Baptiste Auguie ", + "Repository": "CRAN" + }, + "gtable": { + "Package": "gtable", + "Version": "0.3.6", + "Source": "Repository", + "Title": "Arrange 'Grobs' in Tables", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to make it easier to work with \"tables\" of 'grobs'. The 'gtable' package defines a 'gtable' grob class that specifies a grid along with a list of grobs and their placement in the grid. Further the package makes it easy to manipulate and combine 'gtable' objects so that complex compositions can be built up sequentially.", + "License": "MIT + file LICENSE", + "URL": "https://gtable.r-lib.org, https://github.com/r-lib/gtable", + "BugReports": "https://github.com/r-lib/gtable/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "cli", + "glue", + "grid", + "lifecycle", + "rlang (>= 1.1.0)", + "stats" + ], + "Suggests": [ + "covr", + "ggplot2", + "knitr", + "profvis", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2024-10-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "haven": { + "Package": "haven", + "Version": "2.5.5", + "Source": "Repository", + "Title": "Import and Export 'SPSS', 'Stata' and 'SAS' Files", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Evan\", \"Miller\", role = c(\"aut\", \"cph\"), comment = \"Author of included ReadStat code\"), person(\"Danny\", \"Smith\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Import foreign statistical formats into R via the embedded 'ReadStat' C library, .", + "License": "MIT + file LICENSE", + "URL": "https://haven.tidyverse.org, https://github.com/tidyverse/haven, https://github.com/WizardMac/ReadStat", + "BugReports": "https://github.com/tidyverse/haven/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli (>= 3.0.0)", + "forcats (>= 0.2.0)", + "hms", + "lifecycle", + "methods", + "readr (>= 0.1.0)", + "rlang (>= 0.4.0)", + "tibble", + "tidyselect", + "vctrs (>= 0.3.0)" + ], + "Suggests": [ + "covr", + "crayon", + "fs", + "knitr", + "pillar (>= 1.4.0)", + "rmarkdown", + "testthat (>= 3.0.0)", + "utf8" + ], + "LinkingTo": [ + "cpp11" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "GNU make, zlib: zlib1g-dev (deb), zlib-devel (rpm)", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Evan Miller [aut, cph] (Author of included ReadStat code), Danny Smith [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "highr": { + "Package": "highr", + "Version": "0.12", + "Source": "Repository", + "Type": "Package", + "Title": "Syntax Highlighting for R Source Code", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Yixuan\", \"Qiu\", role = \"aut\"), person(\"Christopher\", \"Gandrud\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\") )", + "Description": "Provides syntax highlighting for R source code. Currently it supports LaTeX and HTML output. Source code of other languages is supported via Andre Simon's highlight package ().", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "xfun (>= 0.18)" + ], + "Suggests": [ + "knitr", + "markdown", + "testit" + ], + "License": "GPL", + "URL": "https://github.com/yihui/highr", + "BugReports": "https://github.com/yihui/highr/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (ORCID: ), Yixuan Qiu [aut], Christopher Gandrud [ctb], Qiang Li [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "hms": { + "Package": "hms", + "Version": "1.1.4", + "Source": "Repository", + "Title": "Pretty Time of Day", + "Date": "2025-10-11", + "Authors@R": "c( person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\"), person(\"Posit Software, PBC\", role = \"fnd\", comment = c(ROR = \"03wc8by49\")) )", + "Description": "Implements an S3 class for storing and formatting time-of-day values, based on the 'difftime' class.", + "License": "MIT + file LICENSE", + "URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms", + "BugReports": "https://github.com/tidyverse/hms/issues", + "Imports": [ + "cli", + "lifecycle", + "methods", + "pkgconfig", + "rlang (>= 1.0.2)", + "vctrs (>= 0.3.8)" + ], + "Suggests": [ + "crayon", + "lubridate", + "pillar (>= 1.1.0)", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (ORCID: ), R Consortium [fnd], Posit Software, PBC [fnd] (ROR: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "igraph": { + "Package": "igraph", + "Version": "2.3.3", + "Source": "Repository", + "Title": "Network Analysis and Visualization", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Tamás\", \"Nepusz\", , \"ntamas@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-1451-338X\")), person(\"Vincent\", \"Traag\", role = \"aut\", comment = c(ORCID = \"0000-0003-3170-3879\")), person(\"Szabolcs\", \"Horvát\", , \"szhorvat@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-3100-523X\")), person(\"Fabio\", \"Zanini\", , \"fabio.zanini@unsw.edu.au\", role = \"aut\", comment = c(ORCID = \"0000-0001-7097-8539\")), person(\"Daniel\", \"Noom\", role = \"aut\"), person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Michael\", \"Antonov\", role = \"ctb\"), person(\"Chan Zuckerberg Initiative\", role = \"fnd\", comment = c(ROR = \"02qenvm24\")), person(\"David\", \"Schoch\", , \"david.schoch@cynkra.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-2952-4812\")), person(\"Maëlle\", \"Salmon\", , \"maelle@cynkra.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"R Consortium\", role = \"fnd\", comment = c(ROR = \"01z833950\")) )", + "Description": "Routines for simple graphs and network analysis. It can handle large graphs very well and provides functions for generating random and regular graphs, graph visualization, centrality methods and much more.", + "License": "GPL (>= 2)", + "URL": "https://r.igraph.org/, https://igraph.org/, https://igraph.discourse.group/", + "BugReports": "https://github.com/igraph/rigraph/issues", + "Depends": [ + "methods", + "R (>= 3.5.0)" + ], + "Imports": [ + "cli", + "graphics", + "grDevices", + "lifecycle", + "magrittr", + "Matrix", + "pkgconfig (>= 2.0.0)", + "rlang (>= 1.1.0)", + "stats", + "utils", + "vctrs" + ], + "Suggests": [ + "ape (>= 5.7-0.1)", + "callr", + "decor", + "digest", + "igraphdata", + "knitr", + "rgl (>= 1.3.14)", + "rmarkdown", + "scales", + "stats4", + "tcltk", + "testthat", + "vdiffr", + "withr" + ], + "Enhances": [ + "graph" + ], + "LinkingTo": [ + "cpp11 (>= 0.5.0)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "false", + "Config/build/never-clean": "true", + "Config/comment/compilation-database": "Generate manually with pkgload:::generate_db() for faster pkgload::load_all()", + "Config/Needs/build": "devtools, irlba, pkgconfig", + "Config/Needs/coverage": "covr", + "Config/Needs/roxygen2": "r-lib/roxygen2, igraph/igraph.r2cdocs, moodymudskipper/devtag", + "Config/Needs/website": "here, readr, tibble, xmlparsedata, xml2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "aaa-auto, vs-es, scan, vs-operators, weakref, watts.strogatz.game", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "SystemRequirements": "libxml2 (optional), glpk (>= 4.57, optional)", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut] (ORCID: ), Tamás Nepusz [aut] (ORCID: ), Vincent Traag [aut] (ORCID: ), Szabolcs Horvát [aut] (ORCID: ), Fabio Zanini [aut] (ORCID: ), Daniel Noom [aut], Kirill Müller [aut, cre] (ORCID: ), Michael Antonov [ctb], Chan Zuckerberg Initiative [fnd] (ROR: ), David Schoch [aut] (ORCID: ), Maëlle Salmon [aut] (ORCID: ), R Consortium [fnd] (ROR: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "jsonlite": { + "Package": "jsonlite", + "Version": "2.0.0", + "Source": "Repository", + "Title": "A Simple and Robust JSON Parser and Generator for R", + "License": "MIT + file LICENSE", + "Depends": [ + "methods" + ], + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Duncan\", \"Temple Lang\", role = \"ctb\"), person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))", + "URL": "https://jeroen.r-universe.dev/jsonlite https://arxiv.org/abs/1403.2805", + "BugReports": "https://github.com/jeroen/jsonlite/issues", + "Maintainer": "Jeroen Ooms ", + "VignetteBuilder": "knitr, R.rsp", + "Description": "A reasonably fast JSON parser and generator, optimized for statistical data and the web. Offers simple, flexible tools for working with JSON in R, and is particularly powerful for building pipelines and interacting with a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, 'jsonlite' contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications.", + "Suggests": [ + "httr", + "vctrs", + "testthat", + "knitr", + "rmarkdown", + "R.rsp", + "sf" + ], + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)", + "Repository": "CRAN" + }, + "knitr": { + "Package": "knitr", + "Version": "1.52", + "Source": "Repository", + "Type": "Package", + "Title": "A General-Purpose Package for Dynamic Report Generation in R", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Abhraneel\", \"Sarma\", role = \"ctb\"), person(\"Adam\", \"Vogt\", role = \"ctb\"), person(\"Alastair\", \"Andrew\", role = \"ctb\"), person(\"Alex\", \"Zvoleff\", role = \"ctb\"), person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"), person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"), person(\"Aron\", \"Atkins\", role = \"ctb\"), person(\"Aaron\", \"Wolen\", role = \"ctb\"), person(\"Ashley\", \"Manton\", role = \"ctb\"), person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")), person(\"Ben\", \"Baumer\", role = \"ctb\"), person(\"Brian\", \"Diggs\", role = \"ctb\"), person(\"Brian\", \"Zhang\", role = \"ctb\"), person(\"Bulat\", \"Yapparov\", role = \"ctb\"), person(\"Cassio\", \"Pereira\", role = \"ctb\"), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person(\"David\", \"Hall\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", role = \"ctb\"), person(\"David\", \"Robinson\", role = \"ctb\"), person(\"Doug\", \"Hemken\", role = \"ctb\"), person(\"Duncan\", \"Murdoch\", role = \"ctb\"), person(\"Elio\", \"Campitelli\", role = \"ctb\"), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Emily\", \"Riederer\", role = \"ctb\"), person(\"Fabian\", \"Hirschmann\", role = \"ctb\"), person(\"Fitch\", \"Simeon\", role = \"ctb\"), person(\"Forest\", \"Fang\", role = \"ctb\"), person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"), person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"), person(\"Gregoire\", \"Detrez\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Hao\", \"Zhu\", role = \"ctb\"), person(\"Heewon\", \"Jeon\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Hodges\", \"Daniel\", role = \"ctb\"), person(\"Jacob\", \"Bien\", role = \"ctb\"), person(\"Jake\", \"Burkhead\", role = \"ctb\"), person(\"James\", \"Manton\", role = \"ctb\"), person(\"Jared\", \"Lander\", role = \"ctb\"), person(\"Jason\", \"Punyon\", role = \"ctb\"), person(\"Javier\", \"Luraschi\", role = \"ctb\"), person(\"Jeff\", \"Arnold\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", role = \"ctb\"), person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"), person(\"Jeremy\", \"Stephens\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\"), person(\"Johannes\", \"Ranke\", role = \"ctb\"), person(\"John\", \"Honaker\", role = \"ctb\"), person(\"John\", \"Muschelli\", role = \"ctb\"), person(\"Jonathan\", \"Keane\", role = \"ctb\"), person(\"JJ\", \"Allaire\", role = \"ctb\"), person(\"Johan\", \"Toloe\", role = \"ctb\"), person(\"Jonathan\", \"Sidi\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Julien\", \"Barnier\", role = \"ctb\"), person(\"Kaiyin\", \"Zhong\", role = \"ctb\"), person(\"Kamil\", \"Slowikowski\", role = \"ctb\"), person(\"Karl\", \"Forner\", role = \"ctb\"), person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"), person(\"Kirill\", \"Mueller\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Leonidas\", \"Zhak\", role = \"ctb\"), person(\"Lorenz\", \"Walthert\", role = \"ctb\"), person(\"Lucas\", \"Gallindo\", role = \"ctb\"), person(\"Marius\", \"Hofert\", role = \"ctb\"), person(\"Martin\", \"Modrák\", role = \"ctb\"), person(\"Michael\", \"Chirico\", role = \"ctb\"), person(\"Michael\", \"Friendly\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", role = \"ctb\"), person(\"Michel\", \"Kuhlmann\", role = \"ctb\"), person(\"Miller\", \"Patrick\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Nick\", \"Salkowski\", role = \"ctb\"), person(\"Niels Richard\", \"Hansen\", role = \"ctb\"), person(\"Noam\", \"Ross\", role = \"ctb\"), person(\"Obada\", \"Mahdi\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")), person(\"Pedro\", \"Faria\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\"), person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"), person(\"Rodrigo\", \"Copetti\", role = \"ctb\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Ruaridh\", \"Williamson\", role = \"ctb\"), person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")), person(\"Scott\", \"Kostyshak\", role = \"ctb\"), person(\"Sebastian\", \"Meyer\", role = \"ctb\"), person(\"Sietse\", \"Brouwer\", role = \"ctb\"), person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"), person(\"Sylvain\", \"Rousseau\", role = \"ctb\"), person(\"Taiyun\", \"Wei\", role = \"ctb\"), person(\"Thibaut\", \"Assus\", role = \"ctb\"), person(\"Thibaut\", \"Lamadon\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Tim\", \"Mastny\", role = \"ctb\"), person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = \"ctb\"), person(\"Viktoras\", \"Veitas\", role = \"ctb\"), person(\"Weicheng\", \"Zhu\", role = \"ctb\"), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Zachary\", \"Foster\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a general-purpose tool for dynamic report generation in R using Literate Programming techniques.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "evaluate (>= 0.15)", + "highr (>= 0.11)", + "methods", + "tools", + "xfun (>= 0.52)", + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "bslib", + "DBI (>= 0.4-1)", + "digest", + "formatR", + "gifski", + "gridSVG", + "htmlwidgets (>= 0.7)", + "jpeg", + "JuliaCall (>= 0.11.1)", + "magick", + "litedown (>= 0.10)", + "otel", + "otelsdk", + "png", + "ragg (>= 1.5.0)", + "reticulate (>= 1.4)", + "rgl (>= 0.95.1201)", + "rlang", + "rmarkdown", + "sass", + "showtext", + "styler (>= 1.2.0)", + "targets (>= 0.6.0)", + "testit", + "tibble", + "tikzDevice (>= 0.10)", + "tinytex (>= 0.56)", + "webshot", + "rstudioapi", + "svglite" + ], + "License": "GPL", + "URL": "https://yihui.org/knitr/", + "BugReports": "https://github.com/yihui/knitr/issues", + "Encoding": "UTF-8", + "VignetteBuilder": "litedown, knitr", + "SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).", + "Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R' 'utils.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks-typst.R' 'hooks.R' 'otel.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'", + "Config/roxygen2/version": "8.1.0", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (ORCID: , URL: https://yihui.org), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (ORCID: ), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johan Larsson [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Leonidas Zhak [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (ORCID: ), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (ORCID: ), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (ORCID: ), Posit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "lattice": { + "Package": "lattice", + "Version": "0.22-9", + "Source": "Repository", + "Date": "2026-02-03", + "Priority": "recommended", + "Title": "Trellis Graphics for R", + "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"deepayan.sarkar@r-project.org\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"), person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\") )", + "Description": "A powerful and elegant high-level data visualization system inspired by Trellis graphics, with an emphasis on multivariate data. Lattice is sufficient for typical graphics needs, and is also flexible enough to handle most nonstandard requirements. See ?Lattice for an introduction.", + "Depends": [ + "R (>= 4.0.0)" + ], + "Suggests": [ + "KernSmooth", + "MASS", + "latticeExtra", + "colorspace" + ], + "Imports": [ + "grid", + "grDevices", + "graphics", + "stats", + "utils" + ], + "Enhances": [ + "chron", + "zoo" + ], + "LazyLoad": "yes", + "LazyData": "yes", + "License": "GPL (>= 2)", + "URL": "https://lattice.r-forge.r-project.org/", + "BugReports": "https://github.com/deepayan/lattice/issues", + "NeedsCompilation": "yes", + "Author": "Deepayan Sarkar [aut, cre] (ORCID: ), Felix Andrews [ctb], Kevin Wright [ctb] (documentation), Neil Klepeis [ctb], Johan Larsson [ctb] (miscellaneous improvements), Zhijian (Jason) Wen [cph] (filled contour code), Paul Murrell [ctb], Stefan Eng [ctb] (violin plot improvements), Achim Zeileis [ctb] (modern colors), Alexandre Courtiol [ctb] (generics for larrows, lpolygon, lrect and lsegments)", + "Maintainer": "Deepayan Sarkar ", + "Repository": "CRAN" + }, + "lavaan": { + "Package": "lavaan", + "Version": "0.7-2", + "Source": "Repository", + "Title": "Latent Variable Analysis", + "Authors@R": "c(person(given = \"Yves\", family = \"Rosseel\", role = c(\"aut\", \"cre\"), email = \"Yves.Rosseel@UGent.be\", comment = c(ORCID = \"0000-0002-4129-4477\")), person(given = c(\"Terrence\",\"D.\"), family = \"Jorgensen\", role = \"aut\", email = \"TJorgensen314@gmail.com\", comment = c(ORCID = \"0000-0001-5111-6773\")), person(given = c(\"Luc\"), family = \"De Wilde\", role = \"aut\", email = \"Luc.DeWilde@UGent.be\"), person(given = \"Daniel\", family = \"Oberski\", role = \"ctb\", email = \"daniel.oberski@gmail.com\"), person(given = \"Jarrett\", family = \"Byrnes\", role = \"ctb\", email = \"byrnes@nceas.ucsb.edu\"), person(given = \"Leonard\", family = \"Vanbrabant\", role = \"ctb\", email = \"info@restriktor.org\"), person(given = \"Victoria\", family = \"Savalei\", role = \"ctb\", email = \"vsavalei@ubc.ca\"), person(given = \"Ed\", family = \"Merkle\", role = \"ctb\", email = \"merklee@missouri.edu\"), person(given = \"Michael\", family = \"Hallquist\", role = \"ctb\", email = \"michael.hallquist@gmail.com\"), person(given = \"Mijke\", family = \"Rhemtulla\", role = \"ctb\", email = \"mrhemtulla@ucdavis.edu\"), person(given = \"Myrsini\", family = \"Katsikatsou\", role = \"ctb\", email = \"mirtok2@gmail.com\"), person(given = \"Mariska\", family = \"Barendse\", role = \"ctb\", email = \"m.t.barendse@gmail.com\"), person(given = c(\"Nicholas\"), family = \"Rockwood\", role = \"ctb\", email = \"nrockwood@rti.org\"), person(given = \"Florian\", family = \"Scharf\", role = \"ctb\", email = \"florian.scharf@uni-leipzig.de\"), person(given = \"Han\", family = \"Du\", role = \"ctb\", email = \"hdu@psych.ucla.edu\"), person(given = \"Haziq\", family = \"Jamil\", role = \"ctb\", email = \"haziq.jamil@ubd.edu.bn\", comment = c(ORCID = \"0000-0003-3298-1010\")), person(given = \"Franz\", family = \"Classe\", role = \"ctb\", email = \"classe@dji.de\") )", + "Description": "Fit a variety of latent variable models, including confirmatory factor analysis, structural equation modeling and latent growth curve models.", + "Depends": [ + "R(>= 3.4)" + ], + "Imports": [ + "methods", + "stats4", + "stats", + "utils", + "graphics", + "MASS", + "mnormt", + "pbivnorm", + "numDeriv", + "quadprog" + ], + "BugReports": "https://github.com/yrosseel/lavaan/issues", + "License": "GPL (>= 2)", + "LazyData": "yes", + "LazyDataCompression": "xz", + "ByteCompile": "true", + "URL": "https://lavaan.ugent.be", + "NeedsCompilation": "no", + "Author": "Yves Rosseel [aut, cre] (ORCID: ), Terrence D. Jorgensen [aut] (ORCID: ), Luc De Wilde [aut], Daniel Oberski [ctb], Jarrett Byrnes [ctb], Leonard Vanbrabant [ctb], Victoria Savalei [ctb], Ed Merkle [ctb], Michael Hallquist [ctb], Mijke Rhemtulla [ctb], Myrsini Katsikatsou [ctb], Mariska Barendse [ctb], Nicholas Rockwood [ctb], Florian Scharf [ctb], Han Du [ctb], Haziq Jamil [ctb] (ORCID: ), Franz Classe [ctb]", + "Maintainer": "Yves Rosseel ", + "Repository": "CRAN" + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.5", + "Source": "Repository", + "Title": "Manage the Life Cycle of your Package Functions", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Manage the life cycle of your exported functions with shared conventions, documentation badges, and user-friendly deprecation warnings.", + "License": "MIT + file LICENSE", + "URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle", + "BugReports": "https://github.com/r-lib/lifecycle/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "covr", + "knitr", + "lintr (>= 3.1.0)", + "rmarkdown", + "testthat (>= 3.0.1)", + "tibble", + "tidyverse", + "tools", + "vctrs", + "withr", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, usethis", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (ORCID: ), Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "listenv": { + "Package": "listenv", + "Version": "1.0.0", + "Source": "Repository", + "Depends": [ + "R (>= 3.1.2)" + ], + "Suggests": [ + "R.utils", + "R.rsp", + "markdown" + ], + "VignetteBuilder": "R.rsp", + "Title": "Environments Behaving (Almost) as Lists", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")))", + "Description": "List environments are environments that have list-like properties. For instance, the elements of a list environment are ordered and can be accessed and iterated over using index subsetting, e.g. 'x <- listenv(a = 1, b = 2); for (i in seq_along(x)) x[[i]] <- x[[i]] ^ 2; y <- as.list(x)'.", + "License": "Apache License (>= 2)", + "LazyLoad": "TRUE", + "URL": "https://listenv.futureverse.org, https://github.com/futureverse/listenv", + "BugReports": "https://github.com/futureverse/listenv/issues", + "Encoding": "UTF-8", + "Language": "en-US", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: )", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.5", + "Source": "Repository", + "Type": "Package", + "Title": "A Forward-Pipe Operator for R", + "Authors@R": "c( person(\"Stefan Milton\", \"Bache\", , \"stefan@stefanbache.dk\", role = c(\"aut\", \"cph\"), comment = \"Original author and creator of magrittr\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"cre\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"", + "License": "MIT + file LICENSE", + "URL": "https://magrittr.tidyverse.org, https://github.com/tidyverse/magrittr", + "BugReports": "https://github.com/tidyverse/magrittr/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Suggests": [ + "covr", + "knitr", + "rlang", + "rmarkdown", + "testthat" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "Yes", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "mgcv": { + "Package": "mgcv", + "Version": "1.9-4", + "Source": "Repository", + "Authors@R": "person(given = \"Simon\", family = \"Wood\", role = c(\"aut\", \"cre\"), email = \"simon.wood@r-project.org\")", + "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness Estimation", + "Description": "Generalized additive (mixed) models, some of their extensions and other generalized ridge regression with multiple smoothing parameter estimation by (Restricted) Marginal Likelihood, Cross Validation and similar, or using iterated nested Laplace approximation for fully Bayesian inference. See Wood (2025) for an overview. Includes a gam() function, a wide variety of smoothers, 'JAGS' support and distributions beyond the exponential family.", + "Priority": "recommended", + "Depends": [ + "R (>= 4.4.0)", + "nlme (>= 3.1-64)" + ], + "Imports": [ + "methods", + "stats", + "graphics", + "Matrix", + "splines", + "utils" + ], + "Suggests": [ + "parallel", + "survival", + "MASS" + ], + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Author": "Simon Wood [aut, cre]", + "Maintainer": "Simon Wood ", + "Repository": "CRAN" + }, + "minqa": { + "Package": "minqa", + "Version": "1.2.8", + "Source": "Repository", + "Type": "Package", + "Title": "Derivative-Free Optimization Algorithms by Quadratic Approximation", + "Authors@R": "c(person(given = \"Douglas\", family = \"Bates\", role = \"aut\"), person(given = c(\"Katharine\", \"M.\"), family = \"Mullen\", role = c(\"aut\", \"cre\"), email = \"katharine.mullen@stat.ucla.edu\"), person(given = c(\"John\", \"C.\"), family = \"Nash\", role = \"aut\"), person(given = \"Ravi\", family = \"Varadhan\", role = \"aut\"))", + "Maintainer": "Katharine M. Mullen ", + "Description": "Derivative-free optimization by quadratic approximation based on an interface to Fortran implementations by M. J. D. Powell.", + "License": "GPL-2", + "URL": "http://optimizer.r-forge.r-project.org", + "Imports": [ + "Rcpp (>= 0.9.10)" + ], + "LinkingTo": [ + "Rcpp" + ], + "SystemRequirements": "GNU make", + "NeedsCompilation": "yes", + "Repository": "CRAN", + "Author": "Douglas Bates [aut], Katharine M. Mullen [aut, cre], John C. Nash [aut], Ravi Varadhan [aut]" + }, + "mirt": { + "Package": "mirt", + "Version": "1.47", + "Source": "Repository", + "Type": "Package", + "Title": "Multidimensional Item Response Theory", + "Authors@R": "c( person(\"Phil\", family=\"Chalmers\", email = \"rphilip.chalmers@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID=\"0000-0001-5332-2810\")), person(\"Joshua\", family=\"Pritikin\", role=c('ctb')), person(\"Alexander\", family=\"Robitzsch\", role=c('ctb')), person(\"Mateusz\", family=\"Zoltak\", role=c('ctb')), person(\"KwonHyun\", family=\"Kim\", role=c('ctb')), person(\"Carl F.\", family=\"Falk\", role=c('ctb')), person(\"Adam\", family=\"Meade\", role=c('ctb')), person(\"Lennart\", family=\"Schneider\", role=c('ctb')), person(\"David\", family=\"King\", role=c('ctb')), person(\"Chen-Wei\", family=\"Liu\", role=c('ctb')), person(\"Ogreden\", family=\"Oguzhan\", role=c('ctb')), person(\"Samuel\", family=\"Huang\", role=c('ctb')))", + "Description": "Analysis of discrete response data using unidimensional and multidimensional item analysis models under the Item Response Theory paradigm (Chalmers (2012) ). Exploratory and confirmatory item factor analysis models are estimated with quadrature (EM) or stochastic (MHRM) methods. Confirmatory bi-factor and two-tier models are available for modeling item testlets using dimension reduction EM algorithms, while multiple group analyses and mixed effects designs are included for detecting differential item, bundle, and test functioning, and for modeling item and person covariates. Finally, latent class models such as the DINA, DINO, multidimensional latent class, mixture IRT models, and zero-inflated response models are supported, as well as a wide family of probabilistic unfolding models.", + "VignetteBuilder": "knitr", + "Depends": [ + "stats", + "R (>= 4.1.0)", + "stats4", + "lattice", + "methods" + ], + "Imports": [ + "GPArotation", + "gridExtra", + "Matrix (>= 1.5-0)", + "Rcpp", + "mgcv", + "vegan", + "Deriv", + "splines", + "splines2", + "pbapply (>= 1.3-0)", + "dcurver", + "SimDesign" + ], + "Suggests": [ + "boot", + "parallel", + "mirai", + "latticeExtra", + "directlabels", + "shiny", + "knitr", + "markdown", + "Rsolnp", + "nloptr", + "sirt", + "plink", + "mirtCAT", + "testthat (>= 3.0.0)" + ], + "ByteCompile": "yes", + "LazyLoad": "yes", + "LazyData": "yes", + "LinkingTo": [ + "Rcpp", + "RcppArmadillo" + ], + "License": "GPL (>= 3)", + "Encoding": "UTF-8", + "Repository": "CRAN", + "Maintainer": "Phil Chalmers ", + "URL": "https://philchalmers.github.io/mirt/, https://github.com/philchalmers/mirt/wiki, https://groups.google.com/forum/#!forum/mirt-package", + "BugReports": "https://github.com/philchalmers/mirt/issues?state=open", + "Config/testthat/edition": "3", + "Config/roxygen2/version": "8.1.0", + "NeedsCompilation": "yes", + "Author": "Phil Chalmers [aut, cre] (ORCID: ), Joshua Pritikin [ctb], Alexander Robitzsch [ctb], Mateusz Zoltak [ctb], KwonHyun Kim [ctb], Carl F. Falk [ctb], Adam Meade [ctb], Lennart Schneider [ctb], David King [ctb], Chen-Wei Liu [ctb], Ogreden Oguzhan [ctb], Samuel Huang [ctb]" + }, + "mitools": { + "Package": "mitools", + "Version": "2.7", + "Source": "Repository", + "Title": "Tools for Multiple Imputation of Missing Data", + "Authors@R": "person(given = \"Thomas\", family = \"Lumley\", role = c(\"aut\", \"cre\"), email = \"t.lumley@auckland.ac.nz\")", + "Description": "Tools to perform analyses and combine results from multiple-imputation datasets.", + "Maintainer": "Thomas Lumley ", + "Suggests": [ + "RODBC", + "foreign" + ], + "Imports": [ + "DBI", + "methods", + "stats" + ], + "License": "GPL-2", + "NeedsCompilation": "no", + "Author": "Thomas Lumley [aut, cre]", + "Repository": "CRAN" + }, + "mnormt": { + "Package": "mnormt", + "Version": "2.1.2", + "Source": "Repository", + "Date": "2026-01-25", + "Title": "The Multivariate Normal and t Distributions, and Their Truncated Versions", + "Authors@R": "c(person(given = \"Adelchi\", family = \"Azzalini\", role = c(\"aut\", \"cre\"), email = \"adelchi.azzalini@unipd.it\"), person(given = \"Alan\", family = \"Genz\", role = \"aut\", comment = \"most Fortran code\"), person(given = \"Alan\", family = \"Miller\", role = \"ctb\", comment = \"Fortran routine PHI\"), person(given = c(\"Michael\", \"J.\"), family = \"Wichura\", role = \"ctb\", comment = \"Fortran routine PHINV\"), person(given = c(\"G.\", \"W.\"), family = \"Hill\", role = \"ctb\", comment = \"Fortran routine STDINV\"), person(given = \"Yihong\", family = \"Ge.\", role = \"ctb\", comment = \"Fortran routines BNVU and MVBVU\"))", + "Maintainer": "Adelchi Azzalini ", + "Depends": [ + "R (>= 3.0.0)" + ], + "Description": "Functions are provided for computing the density and the distribution function of multi-dimensional normal and \"t\" random variables, possibly truncated (on one side or two sides), and for generating random vectors sampled from these distributions, except sampling from the truncated \"t\". Moments of arbitrary order of a multivariate truncated normal are computed, and converted to cumulants up to order 4. Probabilities are computed via non-Monte Carlo methods; different routines are used in the case d=1, d=2, d=3, d>3, if d denotes the dimensionality.", + "License": "GPL-2 | GPL-3", + "URL": "http://azzalini.stat.unipd.it/SW/Pkg-mnormt/", + "NeedsCompilation": "yes", + "Encoding": "UTF-8", + "Author": "Adelchi Azzalini [aut, cre], Alan Genz [aut] (most Fortran code), Alan Miller [ctb] (Fortran routine PHI), Michael J. Wichura [ctb] (Fortran routine PHINV), G. W. Hill [ctb] (Fortran routine STDINV), Yihong Ge. [ctb] (Fortran routines BNVU and MVBVU)", + "Repository": "CRAN" + }, + "nlme": { + "Package": "nlme", + "Version": "3.1-169", + "Source": "Repository", + "Date": "2026-03-27", + "Priority": "recommended", + "Title": "Linear and Nonlinear Mixed Effects Models", + "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"), person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"), person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"), person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"), person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"), person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"), person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"), person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"), person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", + "Contact": "see 'MailingList'", + "Description": "Fit and compare Gaussian linear and nonlinear mixed-effects models.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "graphics", + "stats", + "utils", + "lattice" + ], + "Suggests": [ + "MASS", + "SASmixed" + ], + "LazyData": "yes", + "Encoding": "UTF-8", + "License": "GPL (>= 2)", + "BugReports": "https://bugs.r-project.org", + "MailingList": "R-help@r-project.org", + "URL": "https://svn.r-project.org/R-packages/trunk/nlme/", + "NeedsCompilation": "yes", + "Author": "José Pinheiro [aut] (S version), Douglas Bates [aut] (up to 2007), Saikat DebRoy [ctb] (up to 2002), Deepayan Sarkar [ctb] (up to 2005), EISPACK authors [ctb] (src/rs.f), Siem Heisterkamp [ctb] (Author fixed sigma), Bert Van Willigen [ctb] (Programmer fixed sigma), Johannes Ranke [ctb] (varConstProp()), R Core Team [aut, cre] (ROR: )", + "Maintainer": "R Core Team ", + "Repository": "CRAN" + }, + "nnet": { + "Package": "nnet", + "Version": "7.3-20", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-01", + "Depends": [ + "R (>= 3.0.0)", + "stats", + "utils" + ], + "Suggests": [ + "MASS" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Software for feed-forward neural networks with a single hidden layer, and for multinomial log-linear models.", + "Title": "Feed-Forward Neural Networks and Multinomial Log-Linear Models", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "NeedsCompilation": "yes", + "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "numDeriv": { + "Package": "numDeriv", + "Version": "2016.8-1.1", + "Source": "Repository", + "Title": "Accurate Numerical Derivatives", + "Description": "Methods for calculating (usually) accurate numerical first and second order derivatives. Accurate calculations are done using 'Richardson''s' extrapolation or, when applicable, a complex step derivative is available. A simple difference method is also provided. Simple difference is (usually) less accurate but is much quicker than 'Richardson''s' extrapolation and provides a useful cross-check. Methods are provided for real scalar and vector valued functions.", + "Depends": [ + "R (>= 2.11.1)" + ], + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL-2", + "Copyright": "2006-2011, Bank of Canada. 2012-2016, Paul Gilbert", + "Author": "Paul Gilbert and Ravi Varadhan", + "Maintainer": "Paul Gilbert ", + "URL": "http://optimizer.r-forge.r-project.org/", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "otel": { + "Package": "otel", + "Version": "0.2.0", + "Source": "Repository", + "Title": "OpenTelemetry R API", + "Authors@R": "person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\"))", + "Description": "High-quality, ubiquitous, and portable telemetry to enable effective observability. OpenTelemetry is a collection of tools, APIs, and SDKs used to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software's performance and behavior. This package implements the OpenTelemetry API: . Use this package as a dependency if you want to instrument your R package for OpenTelemetry.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "callr", + "cli", + "glue", + "jsonlite", + "otelsdk", + "processx", + "shiny", + "spelling", + "testthat (>= 3.0.0)", + "utils", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "URL": "https://otel.r-lib.org, https://github.com/r-lib/otel", + "Additional_repositories": "https://github.com/r-lib/otelsdk/releases/download/devel", + "BugReports": "https://github.com/r-lib/otel/issues", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "parallelly": { + "Package": "parallelly", + "Version": "1.48.0", + "Source": "Repository", + "Title": "Enhancing the 'parallel' Package", + "Imports": [ + "parallel", + "tools", + "utils" + ], + "Suggests": [ + "commonmark", + "base64enc" + ], + "VignetteBuilder": "parallelly", + "Authors@R": "c( person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Mike\", \"Cheng\", role = c(\"ctb\"), email = \"mikefc@coolbutuseless.com\") )", + "Description": "Utility functions that enhance the 'parallel' package and support the built-in parallel backends of the 'future' package. For example, availableCores() gives the number of CPU cores available to your R process as given by the operating system, 'cgroups' and Linux containers, R options, and environment variables, including those set by job schedulers on high-performance compute clusters. If none is set, it will fall back to parallel::detectCores(). Another example is 'parallel::makeCluster(type = \"RPSOCK\")', which is backward compatible with 'parallel::makeCluster()' while doing a better job in setting up remote cluster workers without the need for configuring the firewall to do port-forwarding to your local computer.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://parallelly.futureverse.org, https://github.com/futureverse/parallelly", + "BugReports": "https://github.com/futureverse/parallelly/issues", + "Language": "en-US", + "Encoding": "UTF-8", + "Config/roxygen2/version": "8.0.0", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: ), Mike Cheng [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "pbapply": { + "Package": "pbapply", + "Version": "1.7-5", + "Source": "Repository", + "Type": "Package", + "Title": "Adding Progress Bar to '*apply' Functions", + "Date": "2026-08-31", + "Authors@R": "c(person(given = \"Peter\", family = \"Solymos\", comment = c(ORCID = \"0000-0001-7337-1740\"), role = c(\"aut\", \"cre\"), email = \"psolymos@gmail.com\"), person(given = \"Zygmunt\", family = \"Zawadzki\", role = \"aut\", email = \"zygmunt@zstat.pl\"), person(given = \"Henrik\", family = \"Bengtsson\", role = \"ctb\", email = \"henrikb@braju.com\"), person(\"R Core Team\", role = c(\"cph\", \"ctb\")))", + "Maintainer": "Peter Solymos ", + "Description": "A lightweight package that adds progress bar to vectorized R functions ('*apply'). The implementation can easily be added to functions where showing the progress is useful (e.g. bootstrap). The type and style of the progress bar (with percentages or remaining time) can be set through options. Supports several parallel processing backends including mirai and future.", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "parallel" + ], + "Suggests": [ + "shiny", + "future", + "future.apply" + ], + "License": "GPL (>= 2)", + "URL": "https://github.com/psolymos/pbapply, https://peter.solymos.org/pbapply/", + "BugReports": "https://github.com/psolymos/pbapply/issues", + "NeedsCompilation": "no", + "Author": "Peter Solymos [aut, cre] (ORCID: ), Zygmunt Zawadzki [aut], Henrik Bengtsson [ctb], R Core Team [cph, ctb]", + "Repository": "CRAN" + }, + "pbivnorm": { + "Package": "pbivnorm", + "Version": "0.6.0", + "Source": "Repository", + "Title": "Vectorized Bivariate Normal CDF", + "Date": "2015-01-23", + "Author": "Fortran code by Alan Genz. R code by Brenton Kenkel, based on Adelchi Azzalini's 'mnormt' package.", + "Maintainer": "Brenton Kenkel ", + "Description": "Provides a vectorized R function for calculating probabilities from a standard bivariate normal CDF.", + "License": "GPL (>= 2)", + "URL": "https://github.com/brentonk/pbivnorm", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "permute": { + "Package": "permute", + "Version": "0.9-10", + "Source": "Repository", + "Title": "Functions for Generating Restricted Permutations of Data", + "Authors@R": "c(person(given = \"Gavin L.\", family = \"Simpson\", email = \"ucfagls@gmail.com\", role = c(\"aut\", \"cph\", \"cre\"), comment = c(ORCID = \"0000-0002-9084-8413\")), person(given = \"R Core Team\", role = \"cph\"), person(given = \"Douglas M.\", family = \"Bates\", role = \"ctb\"), person(given = \"Jari\", family = \"Oksanen\", role = \"ctb\"))", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "stats" + ], + "Suggests": [ + "vegan (>= 2.0-0)", + "testthat (>= 0.5)", + "parallel", + "knitr", + "rmarkdown", + "bookdown", + "sessioninfo" + ], + "Description": "A set of restricted permutation designs for freely exchangeable, line transects (time series), and spatial grid designs plus permutation of blocks (groups of samples) is provided. 'permute' also allows split-plot designs, in which the whole-plots or split-plots or both can be freely-exchangeable or one of the restricted designs. The 'permute' package is modelled after the permutation schemes of 'Canoco 3.1' (and later) by Cajo ter Braak.", + "License": "GPL-2", + "ByteCompile": "true", + "URL": "https://github.com/gavinsimpson/permute", + "BugReports": "https://github.com/gavinsimpson/permute/issues", + "Copyright": "see file COPYRIGHTS", + "VignetteBuilder": "knitr", + "Language": "en-GB", + "NeedsCompilation": "no", + "Author": "Gavin L. Simpson [aut, cph, cre] (ORCID: ), R Core Team [cph], Douglas M. Bates [ctb], Jari Oksanen [ctb]", + "Maintainer": "Gavin L. Simpson ", + "Repository": "CRAN" + }, + "pillar": { + "Package": "pillar", + "Version": "1.11.1", + "Source": "Repository", + "Title": "Coloured Formatting for Columns", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))", + "Description": "Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals.", + "License": "MIT + file LICENSE", + "URL": "https://pillar.r-lib.org/, https://github.com/r-lib/pillar", + "BugReports": "https://github.com/r-lib/pillar/issues", + "Imports": [ + "cli (>= 2.3.0)", + "glue", + "lifecycle", + "rlang (>= 1.0.2)", + "utf8 (>= 1.1.0)", + "utils", + "vctrs (>= 0.5.0)" + ], + "Suggests": [ + "bit64", + "DBI", + "debugme", + "DiagrammeR", + "dplyr", + "formattable", + "ggplot2", + "knitr", + "lubridate", + "nanotime", + "nycflights13", + "palmerpenguins", + "rmarkdown", + "scales", + "stringi", + "survival", + "testthat (>= 3.1.1)", + "tibble", + "units (>= 0.7.2)", + "vdiffr", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_multi, ctl_colonnade, ctl_colonnade_1, ctl_colonnade_2", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/gha/extra-packages": "units=?ignore-before-r=4.3.0", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (ORCID: ), Hadley Wickham [aut], RStudio [cph]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "pkgbuild": { + "Package": "pkgbuild", + "Version": "1.4.8", + "Source": "Repository", + "Title": "Find Tools Needed to Build R Packages", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms and ensures the PATH is configured appropriately so R can use them.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/pkgbuild, https://pkgbuild.r-lib.org", + "BugReports": "https://github.com/r-lib/pkgbuild/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "callr (>= 3.2.0)", + "cli (>= 3.4.0)", + "desc", + "processx", + "R6" + ], + "Suggests": [ + "covr", + "cpp11", + "knitr", + "Rcpp", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr (>= 2.3.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-30", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Title": "Private Configuration for 'R' Packages", + "Author": "Gábor Csárdi", + "Maintainer": "Gábor Csárdi ", + "Description": "Set configuration options on a per-package basis. Options set by a given package only apply to that package, other packages are unaffected.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "Imports": [ + "utils" + ], + "Suggests": [ + "covr", + "testthat", + "disposables (>= 1.0.3)" + ], + "URL": "https://github.com/r-lib/pkgconfig#readme", + "BugReports": "https://github.com/r-lib/pkgconfig/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "pkgload": { + "Package": "pkgload", + "Version": "1.5.3", + "Source": "Repository", + "Title": "Simulate Package Installation and Attach", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Some namespace and vignette code extracted from base R\") )", + "Description": "Simulates the process of installing a package and then attaching it. This is a key part of the 'devtools' package as it allows you to rapidly iterate while developing a package.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/pkgload, https://pkgload.r-lib.org", + "BugReports": "https://github.com/r-lib/pkgload/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "cli (>= 3.3.0)", + "desc", + "fs", + "glue", + "lifecycle", + "methods", + "pkgbuild", + "processx", + "rlang (>= 1.1.1)", + "rprojroot", + "utils" + ], + "Suggests": [ + "bitops", + "jsonlite", + "mathjaxr", + "pak", + "Rcpp", + "remotes", + "rstudioapi", + "testthat (>= 3.2.1.1)", + "usethis", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Config/testthat/start-first": "dll", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Winston Chang [aut], Jim Hester [aut], Lionel Henry [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Some namespace and vignette code extracted from base R)", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "praise": { + "Package": "praise", + "Version": "1.0.0", + "Source": "Repository", + "Title": "Praise Users", + "Author": "Gabor Csardi, Sindre Sorhus", + "Maintainer": "Gabor Csardi ", + "Description": "Build friendly R packages that praise their users if they have done something good, or they just need it to feel better.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/gaborcsardi/praise", + "BugReports": "https://github.com/gaborcsardi/praise/issues", + "Suggests": [ + "testthat" + ], + "Collate": "'adjective.R' 'adverb.R' 'exclamation.R' 'verb.R' 'rpackage.R' 'package.R'", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "prettyunits": { + "Package": "prettyunits", + "Version": "1.2.0", + "Source": "Repository", + "Title": "Pretty, Human Readable Formatting of Quantities", + "Authors@R": "c( person(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")), person(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")), person(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\")) )", + "Description": "Pretty, human readable formatting of quantities. Time intervals: '1337000' -> '15d 11h 23m 20s'. Vague time intervals: '2674000' -> 'about a month ago'. Bytes: '1337' -> '1.34 kB'. Rounding: '99' with 3 significant digits -> '99.0' p-values: '0.00001' -> '<0.0001'. Colors: '#FF0000' -> 'red'. Quantities: '1239437' -> '1.24 M'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/prettyunits", + "BugReports": "https://github.com/r-lib/prettyunits/issues", + "Depends": [ + "R(>= 2.10)" + ], + "Suggests": [ + "codetools", + "covr", + "testthat" + ], + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Gabor Csardi [aut, cre], Bill Denney [ctb] (), Christophe Regouby [ctb]", + "Maintainer": "Gabor Csardi ", + "Repository": "CRAN" + }, + "processx": { + "Package": "processx", + "Version": "3.9.0", + "Source": "Repository", + "Title": "Execute and Control System Processes", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to run system processes in the background. It can check if a background process is running; wait on a background process to finish; get the exit status of finished processes; kill background processes. It can read the standard output and error of the processes, using non-blocking connections. 'processx' can poll a process for standard output or error, with a timeout. It can also poll several processes at once.", + "License": "MIT + file LICENSE", + "URL": "https://processx.r-lib.org, https://github.com/r-lib/processx", + "BugReports": "https://github.com/r-lib/processx/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "ps (>= 1.9.3)", + "R6", + "utils" + ], + "Suggests": [ + "callr (>= 3.7.3)", + "cli (>= 3.3.0)", + "codetools", + "covr", + "curl", + "debugme", + "parallel", + "rlang (>= 1.0.2)", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre, cph] (ORCID: ), Winston Chang [aut], Posit Software, PBC [cph, fnd] (ROR: ), Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "progress": { + "Package": "progress", + "Version": "1.2.3", + "Source": "Repository", + "Title": "Terminal Progress Bars", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Rich\", \"FitzJohn\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Configurable Progress bars, they may include percentage, elapsed time, and/or the estimated completion time. They work in terminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'. The package also provides a 'C++' 'API', that works with or without 'Rcpp'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/progress#readme, http://r-lib.github.io/progress/", + "BugReports": "https://github.com/r-lib/progress/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "crayon", + "hms", + "prettyunits", + "R6" + ], + "Suggests": [ + "Rcpp", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Rich FitzJohn [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "progressr": { + "Package": "progressr", + "Version": "1.0.0", + "Source": "Repository", + "Title": "An Inclusive, Unifying API for Progress Updates", + "Description": "A minimal, unifying API for scripts and packages to report progress updates from anywhere including when using parallel processing. The package is designed such that the developer can to focus on what progress should be reported on without having to worry about how to present it. The end user has full control of how, where, and when to render these progress updates, e.g. in the terminal using utils::txtProgressBar(), cli::cli_progress_bar(), in a graphical user interface using utils::winProgressBar(), tcltk::tkProgressBar() or shiny::withProgress(), via the speakers using beepr::beep(), or on a file system via the size of a file. Anyone can add additional, customized, progression handlers. The 'progressr' package uses R's condition framework for signaling progress updated. Because of this, progress can be reported from almost anywhere in R, e.g. from classical for and while loops, from map-reduce API:s like the lapply() family of functions, 'purrr', 'plyr', and 'foreach'. It will also work with parallel processing via the 'future' framework, e.g. 'lapply(...) |> futurize()' and 'purrr::map(...) |> futurize()', which uses future.apply::future_lapply() and furrr::future_map() internally. The package is compatible with Shiny applications.", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")))", + "License": "Apache License (>= 2)", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "digest", + "utils" + ], + "Suggests": [ + "graphics", + "tcltk", + "beepr", + "cli", + "crayon", + "pbmcapply", + "progress", + "purrr", + "foreach", + "plyr", + "doFuture", + "future", + "future.apply", + "furrr", + "ntfy", + "RPushbullet", + "rstudioapi", + "shiny", + "commonmark", + "base64enc", + "tools" + ], + "VignetteBuilder": "progressr", + "Language": "en-US", + "Encoding": "UTF-8", + "URL": "https://progressr.futureverse.org, https://github.com/futureverse/progressr", + "BugReports": "https://github.com/futureverse/progressr/issues", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: )", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "proxy": { + "Package": "proxy", + "Version": "0.4-29", + "Source": "Repository", + "Type": "Package", + "Title": "Distance and Similarity Measures", + "Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"), email = \"David.Meyer@R-project.org\", comment = c(ORCID = \"0000-0002-5196-3048\")),\t person(given = \"Christian\", family = \"Buchta\", role = \"aut\"))", + "Description": "Provides an extensible framework for the efficient calculation of auto- and cross-proximities, along with implementations of the most popular ones.", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "stats", + "utils" + ], + "Suggests": [ + "cba" + ], + "Collate": "registry.R database.R dist.R similarities.R dissimilarities.R util.R seal.R", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "Author": "David Meyer [aut, cre] (ORCID: ), Christian Buchta [aut]", + "Maintainer": "David Meyer ", + "Repository": "CRAN" + }, + "ps": { + "Package": "ps", + "Version": "1.9.3", + "Source": "Repository", + "Title": "List, Query, Manipulate System Processes", + "Authors@R": "c( person(\"Jay\", \"Loden\", role = \"aut\"), person(\"Dave\", \"Daeschler\", role = \"aut\"), person(\"Giampaolo\", \"Rodola'\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "List, query and manipulate all system processes, on 'Windows', 'Linux' and 'macOS'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/ps, https://ps.r-lib.org/", + "BugReports": "https://github.com/r-lib/ps/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "callr", + "covr", + "curl", + "pillar", + "pingr", + "processx (>= 3.1.0)", + "R6", + "rlang", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Biarch": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-28", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Jay Loden [aut], Dave Daeschler [aut], Giampaolo Rodola' [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "psych": { + "Package": "psych", + "Version": "2.6.5", + "Source": "Repository", + "Date": "2026-05-11", + "Title": "Procedures for Psychological, Psychometric, and Personality Research", + "Authors@R": "person(\"William\", \"Revelle\", role =c(\"aut\",\"cre\"), email=\"revelle@northwestern.edu\", comment=c(ORCID = \"0000-0003-4880-9610\") )", + "Description": "A general purpose toolbox developed originally for personality, psychometric theory and experimental psychology. Functions are primarily for multivariate analysis and scale construction using factor analysis, principal component analysis, cluster analysis and reliability analysis, although others provide basic descriptive statistics. Item Response Theory is done using factor analysis of tetrachoric and polychoric correlations. Functions for analyzing data at multiple levels include within and between group statistics, including correlations and factor analysis. Validation and cross validation of scales developed using basic machine learning algorithms are provided, as are functions for simulating and testing particular item and test structures. Several functions serve as a useful front end for structural equation modeling. Graphical displays of path diagrams, including mediation models, factor analysis and structural equation models are created using basic graphics. Some of the functions are written to support a book on psychometric theory as well as publications in personality research. For more information, see the web page.", + "License": "GPL (>= 2)", + "Imports": [ + "mnormt", + "parallel", + "stats", + "graphics", + "grDevices", + "methods", + "lattice", + "nlme", + "GPArotation" + ], + "Suggests": [ + "psychTools", + "lavaan", + "lme4", + "Rcsdp", + "graph", + "knitr", + "Rgraphviz" + ], + "LazyData": "yes", + "ByteCompile": "true", + "VignetteBuilder": "knitr", + "URL": "https://personality-project.org/r/psych/ https://personality-project.org/r/psych-manual.pdf", + "NeedsCompilation": "no", + "Author": "William Revelle [aut, cre] (ORCID: )", + "Maintainer": "William Revelle ", + "Repository": "CRAN" + }, + "purrr": { + "Package": "purrr", + "Version": "1.2.2", + "Source": "Repository", + "Title": "Functional Programming Tools", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )", + "Description": "A complete and consistent functional programming toolkit for R.", + "License": "MIT + file LICENSE", + "URL": "https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr", + "BugReports": "https://github.com/tidyverse/purrr/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli (>= 3.6.1)", + "lifecycle (>= 1.0.3)", + "magrittr (>= 1.5.0)", + "rlang (>= 1.1.1)", + "vctrs (>= 0.6.3)" + ], + "Suggests": [ + "carrier (>= 0.3.0)", + "covr", + "dplyr (>= 0.7.8)", + "httr", + "knitr", + "lubridate", + "mirai (>= 2.5.1)", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble", + "tidyselect" + ], + "LinkingTo": [ + "cli" + ], + "VignetteBuilder": "knitr", + "Biarch": "true", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate, tidyr", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Lionel Henry [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "qs2": { + "Package": "qs2", + "Version": "0.3.1", + "Source": "Repository", + "Type": "Package", + "Title": "Efficient Serialization of R Objects", + "Date": "2026-08-19", + "Authors@R": "c( person(\"Travers\", \"Ching\", email = \"traversc@gmail.com\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Yann\", \"Collet\", role = c(\"ctb\", \"cph\"), comment = \"Yann Collet is the author of the bundled zstd\"), person(\"Facebook, Inc.\", role = \"cph\", comment = \"Facebook is the copyright holder of the bundled zstd code\"), person(\"Reichardt\", \"Tino\", role = c(\"ctb\", \"cph\"), comment = \"Contributor/copyright holder of zstd bundled code\"), person(\"Skibinski\", \"Przemyslaw\", role = c(\"ctb\", \"cph\"), comment = \"Contributor/copyright holder of zstd bundled code\"), person(\"Mori\", \"Yuta\", role = c(\"ctb\", \"cph\"), comment = \"Contributor/copyright holder of zstd bundled code\"), person(\"Francesc\", \"Alted\", role = c(\"ctb\", \"cph\"), comment = \"Shuffling routines derived from Blosc library\"))", + "Maintainer": "Travers Ching ", + "Description": "Streamlines and accelerates the process of saving and loading R objects, improving speed and compression compared to other methods. The package provides two compression formats: the 'qs2' format, which uses R serialization via the C API while optimizing compression and disk I/O, and the 'qdata' format, featuring custom serialization for slightly faster performance and better compression. Additionally, the 'qs2' format can be directly converted to the standard 'RDS' format, ensuring long-term compatibility with future versions of R.", + "License": "GPL-3", + "LazyData": "true", + "Biarch": "true", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "Rcpp", + "RcppParallel (>= 6.1.1)", + "stringfish (>= 0.18.0)" + ], + "LinkingTo": [ + "Rcpp", + "RcppParallel (>= 6.1.1)" + ], + "Suggests": [ + "knitr", + "rmarkdown", + "dplyr", + "data.table", + "stringi" + ], + "SystemRequirements": "GNU make, C++17", + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "Copyright": "This package includes code from the 'zstd' library owned by Facebook, Inc. and created by Yann Collet; and code derived from the 'Blosc' library created and owned by Francesc Alted.", + "URL": "https://github.com/qsbase/qs2", + "BugReports": "https://github.com/qsbase/qs2/issues", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "yes", + "Author": "Travers Ching [aut, cre, cph], Yann Collet [ctb, cph] (Yann Collet is the author of the bundled zstd), Facebook, Inc. [cph] (Facebook is the copyright holder of the bundled zstd code), Reichardt Tino [ctb, cph] (Contributor/copyright holder of zstd bundled code), Skibinski Przemyslaw [ctb, cph] (Contributor/copyright holder of zstd bundled code), Mori Yuta [ctb, cph] (Contributor/copyright holder of zstd bundled code), Francesc Alted [ctb, cph] (Shuffling routines derived from Blosc library)", + "Repository": "CRAN" + }, + "quadprog": { + "Package": "quadprog", + "Version": "1.5-8", + "Source": "Repository", + "Type": "Package", + "Title": "Functions to Solve Quadratic Programming Problems", + "Date": "2019-11-20", + "Author": "S original by Berwin A. Turlach R port by Andreas Weingessel Fortran contributions from Cleve Moler (dposl/LINPACK and (a modified version of) dpodi/LINPACK)", + "Maintainer": "Berwin A. Turlach ", + "Description": "This package contains routines and documentation for solving quadratic programming problems.", + "Depends": [ + "R (>= 3.1.0)" + ], + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "readr": { + "Package": "readr", + "Version": "2.2.0", + "Source": "Repository", + "Title": "Read Rectangular Text Data", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\") )", + "Description": "The goal of 'readr' is to provide a fast and friendly way to read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly parse many types of data found in the wild, while still cleanly failing when data unexpectedly changes.", + "License": "MIT + file LICENSE", + "URL": "https://readr.tidyverse.org, https://github.com/tidyverse/readr", + "BugReports": "https://github.com/tidyverse/readr/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli", + "clipr", + "crayon", + "glue", + "hms (>= 0.4.1)", + "lifecycle", + "methods", + "R6", + "rlang", + "tibble", + "utils", + "vroom (>= 1.7.0)", + "withr" + ], + "Suggests": [ + "covr", + "curl", + "datasets", + "knitr", + "rmarkdown", + "spelling", + "stringi", + "testthat (>= 3.2.0)", + "tzdb (>= 0.1.1)", + "waldo", + "xml2" + ], + "LinkingTo": [ + "cpp11", + "tzdb (>= 0.1.1)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "false", + "Config/usethis/last-upkeep": "2025-11-14", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Romain Francois [ctb], Jennifer Bryan [aut, cre] (ORCID: ), Shelby Bearrows [ctb], Posit Software, PBC [cph, fnd] (ROR: ), https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [ctb, cph] (grisu3 implementation), Mikkel Jørgensen [ctb, cph] (grisu3 implementation)", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "renv": { + "Package": "renv", + "Version": "1.2.4", + "Source": "Repository", + "Type": "Package", + "Title": "Project Environments", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@rstudio.com\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv", + "BugReports": "https://github.com/rstudio/renv/issues", + "Imports": [ + "utils" + ], + "Suggests": [ + "BiocManager", + "cli", + "compiler", + "covr", + "cpp11", + "curl", + "devtools", + "generics", + "gitcreds", + "jsonlite", + "jsonvalidate", + "knitr", + "miniUI", + "modules", + "packrat", + "pak", + "R6", + "remotes", + "reticulate", + "rmarkdown", + "rstudioapi", + "shiny", + "testthat", + "uuid", + "waldo", + "yaml", + "webfakes" + ], + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Kevin Ushey [aut, cre] (ORCID: ), Hadley Wickham [aut] (ORCID: ), Posit Software, PBC [cph, fnd]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN" + }, + "rlang": { + "Package": "rlang", + "Version": "1.3.0", + "Source": "Repository", + "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"mikefc\", , , \"mikefc@coolbutuseless.com\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(\"Yann\", \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.", + "License": "MIT + file LICENSE", + "URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang", + "BugReports": "https://github.com/r-lib/rlang/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "cli (>= 3.1.0)", + "covr", + "crayon", + "desc", + "fs", + "glue", + "knitr", + "magrittr", + "methods", + "pillar", + "pkgload", + "rmarkdown", + "stats", + "testthat (>= 3.3.2)", + "tibble", + "usethis", + "vctrs (>= 0.2.3)", + "withr" + ], + "Enhances": [ + "winch" + ], + "Biarch": "true", + "ByteCompile": "true", + "Config/build/compilation-database": "true", + "Config/Needs/website": "dplyr, tidyverse/tidytemplate", + "Config/roxygen2/version": "8.0.0", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], mikefc [cph] (Hash implementation based on Mike's xxhashlite), Yann Collet [cph] (Author of the embedded xxHash library), Posit, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "rpart": { + "Package": "rpart", + "Version": "4.1.27", + "Source": "Repository", + "Priority": "recommended", + "Date": "2026-03-26", + "Authors@R": "c(person(\"Terry\", \"Therneau\", role = \"aut\", email = \"therneau@mayo.edu\"), person(\"Beth\", \"Atkinson\", role = c(\"aut\", \"cre\"), email = \"atkinson@mayo.edu\"), person(\"Brian\", \"Ripley\", role = \"trl\", email = \"Brian.Ripley@R-project.org\", comment = \"producer of the initial R port, maintainer 1999-2017\"))", + "Description": "Recursive partitioning for classification, regression and survival trees. An implementation of most of the functionality of the 1984 book by Breiman, Friedman, Olshen and Stone.", + "Title": "Recursive Partitioning and Regression Trees", + "Depends": [ + "R (>= 2.15.0)", + "graphics", + "stats", + "grDevices" + ], + "Suggests": [ + "survival" + ], + "License": "GPL-2 | GPL-3", + "LazyData": "yes", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Author": "Terry Therneau [aut], Beth Atkinson [aut, cre], Brian Ripley [trl] (producer of the initial R port, maintainer 1999-2017)", + "Maintainer": "Beth Atkinson ", + "Repository": "CRAN", + "URL": "https://github.com/bethatkinson/rpart, https://cran.r-project.org/package=rpart", + "BugReports": "https://github.com/bethatkinson/rpart/issues" + }, + "rprojroot": { + "Package": "rprojroot", + "Version": "2.1.1", + "Source": "Repository", + "Title": "Finding Files in Project Subdirectories", + "Authors@R": "person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\"))", + "Description": "Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a directory that matches a certain criterion, e.g., it contains a certain regular file.", + "License": "MIT + file LICENSE", + "URL": "https://rprojroot.r-lib.org/, https://github.com/r-lib/rprojroot", + "BugReports": "https://github.com/r-lib/rprojroot/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Suggests": [ + "covr", + "knitr", + "lifecycle", + "rlang", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (ORCID: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "secretbase": { + "Package": "secretbase", + "Version": "1.3.0", + "Source": "Repository", + "Type": "Package", + "Title": "Cryptographic Hash Functions and Data Encoding", + "Authors@R": "c( person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Hibiki AI Limited\", role = \"cph\"), person(\"The Mbed TLS Contributors\", role = \"cph\", comment = \"SHA-3, SHA-256 and base64 code from Mbed TLS\"), person(\"Red Hat, Inc.\", role = \"cph\", comment = \"SipHash code from c-siphash\"), person(\"Luke\", \"Dashjr\", role = \"cph\", comment = \"Base58 code from libbase58\") )", + "Description": "Fast and memory-efficient streaming hash functions, binary/text encoding and serialization. Hashes strings and raw vectors directly. Stream hashes files which can be larger than memory, as well as in-memory objects through R's serialization mechanism. Implements the SHA-256, SHA-3 and 'Keccak' cryptographic hash functions, SHAKE256 extendable-output function (XOF), 'SipHash' pseudo-random function, base64 (including the URL-safe variant) and base58 encoding, 'CBOR' and 'JSON' serialization.", + "License": "MIT + file LICENSE", + "URL": "https://shikokuchuo.net/secretbase/, https://github.com/shikokuchuo/secretbase/", + "BugReports": "https://github.com/shikokuchuo/secretbase/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Config/build/compilation-database": "true", + "Config/roxygen2/markdown": "TRUE", + "Config/roxygen2/version": "8.0.0", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Charlie Gao [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: ), Hibiki AI Limited [cph], The Mbed TLS Contributors [cph] (SHA-3, SHA-256 and base64 code from Mbed TLS), Red Hat, Inc. [cph] (SipHash code from c-siphash), Luke Dashjr [cph] (Base58 code from libbase58)", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN" + }, + "semTools": { + "Package": "semTools", + "Version": "0.5-9", + "Source": "Repository", + "Encoding": "UTF-8", + "Title": "Useful Tools for Structural Equation Modeling", + "Description": "Provides miscellaneous tools for structural equation modeling, many of which extend the 'lavaan' package. For example, latent interactions can be estimated using product indicators (Lin et al., 2010, ) and simple effects probed; analytical power analyses can be conducted (Jak et al., 2021, ); and scale reliability can be estimated based on estimated factor-model parameters.", + "Authors@R": "c(person(given = c(\"Terrence\",\"D.\"), family = \"Jorgensen\", role = c(\"aut\",\"cre\"), email=\"TJorgensen314@gmail.com\", comment = c(ORCID = \"0000-0001-5111-6773\")), person(given = \"Sunthud\", family = \"Pornprasertmanit\", role = \"aut\", email = \"psunthud@gmail.com\", comment = c(ORCID = \"0009-0006-6887-9930\")), person(given = c(\"Alexander\",\"M.\"), family = \"Schoemann\", role = \"aut\", email=\"schoemanna@ecu.edu\", comment = c(ORCID = \"0000-0002-8479-8798\")), person(given = \"Yves\", family = \"Rosseel\", role = \"aut\", email=\"Yves.Rosseel@UGent.be\", comment = c(ORCID = \"0000-0002-4129-4477\")), person(given = \"Patrick\", family = \"Miller\", role = \"ctb\", email=\"pmille13@nd.edu\"), person(given = \"Corbin\", family = \"Quick\", role = \"ctb\", email=\"corbinq@umich.edu\"), person(given = \"Mauricio\", family = \"Garnier-Villarreal\", role = \"ctb\", email=\"m.garniervillarreal@vu.nl\", comment = c(ORCID = \"0000-0002-2951-6647\")), person(given = \"James\", family = \"Selig\", role = \"ctb\", email=\"selig@unm.edu\"), person(given = \"Aaron\", family = \"Boulton\", role = \"ctb\", email=\"aboulton@email.unc.edu\"), person(given = \"Kristopher\", family = \"Preacher\", role = \"ctb\", email=\"kris.preacher@vanderbilt.edu\"), person(given = \"Donna\", family = \"Coffman\", role = \"ctb\", email=\"dlc30@psu.edu\"), person(given = \"Mijke\", family = \"Rhemtulla\", role = \"ctb\", email=\"mrhemtulla@ucdavis.edu\", comment = c(ORCID = \"0000-0003-2572-2424\")), person(given = \"Alexander\", family = \"Robitzsch\", role = \"ctb\", email=\"a.robitzsch@bifie.at\", comment = c(ORCID = \"0000-0002-8226-3132\")), person(given = \"Craig\", family = \"Enders\", role = \"ctb\", email=\"cenders@psych.ucla.edu\"), person(given = \"Ruben\", family = \"Arslan\", role = \"ctb\", email=\"rubenarslan@gmail.com\", comment = c(ORCID = \"0000-0002-6670-5658\")), person(given = \"Bell\", family = \"Clinton\", role = \"ctb\", email=\"clintonbell@ku.edu\"), person(given = \"Pavel\", family = \"Panko\", role = \"ctb\", email=\"pavel.panko@ttu.edu\"), person(given = \"Edgar\", family = \"Merkle\", role = \"ctb\", email=\"merklee@missouri.edu\", comment = c(ORCID = \"0000-0001-7158-0653\")), person(given = \"Steven\", family = \"Chesnut\", role = \"ctb\", email=\"Steven.Chesnut@usm.edu\"), person(given = \"Jarrett\", family = \"Byrnes\", role = \"ctb\", email=\"Jarrett.Byrnes@umb.edu\"), person(given = c(\"Jason\",\"D.\"), family = \"Rights\", role = \"ctb\", email=\"jrights@psych.ubc.ca\"), person(given = \"Ylenio\", family = \"Longo\", role = \"ctb\", email=\"yleniolongo@gmail.com\"), person(given = \"Maxwell\", family = \"Mansolf\", role = \"ctb\", email=\"mamansolf@gmail.com\", comment = c(ORCID = \"0000-0001-6861-8657\")), person(given = \"Mattan S.\", family = \"Ben-Shachar\", role = \"ctb\", email=\"matanshm@post.bgu.ac.il\", comment = c(ORCID = \"0000-0002-4287-4801\")), person(given = \"Mikko\", family = \"Rönkkö\", role = \"ctb\", email = \"mikko.ronkko@jyu.fi\", comment = c(ORCID = \"0000-0001-7988-7609\")), person(given = \"Andrew R.\", family = \"Johnson\", role = \"ctb\", email = \"andrew.johnson@curtin.edu.au\", comment = c(ORCID = \"0000-0001-7000-8065\")), person(given = \"Leonard\", family = \"Vanbrabant\", role = \"ctb\", email = \"L.Vanbrabant@ggdwestbrabant.nl\") )", + "Depends": [ + "R(>= 4.0)", + "lavaan(>= 0.6-21)", + "methods" + ], + "Imports": [ + "graphics", + "pbivnorm", + "stats", + "utils" + ], + "Suggests": [ + "blavaan", + "emmeans", + "lavaan.mi", + "MASS", + "mice", + "mnormt", + "parallel", + "restriktor", + "testthat" + ], + "License": "GPL (>= 2)", + "LazyData": "yes", + "LazyLoad": "yes", + "URL": "https://github.com/simsem/semTools/wiki", + "BugReports": "https://github.com/simsem/semTools/issues", + "Date": "2026-07-13", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Terrence D. Jorgensen [aut, cre] (ORCID: ), Sunthud Pornprasertmanit [aut] (ORCID: ), Alexander M. Schoemann [aut] (ORCID: ), Yves Rosseel [aut] (ORCID: ), Patrick Miller [ctb], Corbin Quick [ctb], Mauricio Garnier-Villarreal [ctb] (ORCID: ), James Selig [ctb], Aaron Boulton [ctb], Kristopher Preacher [ctb], Donna Coffman [ctb], Mijke Rhemtulla [ctb] (ORCID: ), Alexander Robitzsch [ctb] (ORCID: ), Craig Enders [ctb], Ruben Arslan [ctb] (ORCID: ), Bell Clinton [ctb], Pavel Panko [ctb], Edgar Merkle [ctb] (ORCID: ), Steven Chesnut [ctb], Jarrett Byrnes [ctb], Jason D. Rights [ctb], Ylenio Longo [ctb], Maxwell Mansolf [ctb] (ORCID: ), Mattan S. Ben-Shachar [ctb] (ORCID: ), Mikko Rönkkö [ctb] (ORCID: ), Andrew R. Johnson [ctb] (ORCID: ), Leonard Vanbrabant [ctb]", + "Maintainer": "Terrence D. Jorgensen ", + "Repository": "CRAN" + }, + "sessioninfo": { + "Package": "sessioninfo", + "Version": "1.2.4", + "Source": "Repository", + "Title": "R Session Information", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"cre\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Robert\", \"Flight\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"R Core team\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Maintainer": "Gábor Csárdi ", + "Description": "Query and print information about the current R session. It is similar to 'utils::sessionInfo()', but includes more information about packages, and where they were installed from.", + "License": "GPL-2", + "URL": "https://sessioninfo.r-lib.org, https://github.com/r-lib/sessioninfo", + "BugReports": "https://github.com/r-lib/sessioninfo/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli (>= 3.1.0)", + "tools", + "utils" + ], + "Suggests": [ + "callr", + "covr", + "gh", + "reticulate", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr" + ], + "Config/Needs/website": "pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/usethis/last-upkeep": "2025-05-07", + "Encoding": "UTF-8", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [cre], Hadley Wickham [aut], Winston Chang [aut], Robert Flight [aut], Kirill Müller [aut], Jim Hester [aut], R Core team [ctb], Posit Software, PBC [cph, fnd] (ROR: )", + "Repository": "CRAN" + }, + "spatial": { + "Package": "spatial", + "Version": "7.3-18", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-01", + "Depends": [ + "R (>= 3.0.0)", + "graphics", + "stats", + "utils" + ], + "Suggests": [ + "MASS" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"Roger\", \"Bivand\", role = \"ctb\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Functions for kriging and point pattern analysis.", + "Title": "Functions for Kriging and Point Pattern Analysis", + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "NeedsCompilation": "yes", + "Author": "Brian Ripley [aut, cre, cph], Roger Bivand [ctb], William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "splines2": { + "Package": "splines2", + "Version": "0.5.4", + "Source": "Repository", + "Title": "Regression Spline Functions and Classes", + "Authors@R": "c( person(given = \"Wenjie\", family = \"Wang\", email = \"wang@wwenjie.org\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0363-3180\")), person(given = \"Jun\", family = \"Yan\", role = \"aut\", comment = c(ORCID = \"0000-0003-4401-7296\")) )", + "Description": "Constructs basis functions of B-splines, M-splines, I-splines, convex splines (C-splines), periodic splines, natural cubic splines, generalized Bernstein polynomials, their derivatives, and integrals (except C-splines) by closed-form recursive formulas. It also contains a C++ head-only library integrated with Rcpp. See Wang and Yan (2021) for details.", + "Imports": [ + "stats", + "graphics", + "Rcpp" + ], + "LinkingTo": [ + "Rcpp", + "RcppArmadillo" + ], + "Suggests": [ + "knitr", + "rmarkdown", + "tinytest", + "RcppArmadillo" + ], + "Depends": [ + "R (>= 3.2.3)" + ], + "VignetteBuilder": "knitr", + "License": "GPL (>= 3)", + "URL": "https://wwenjie.org/splines2, https://github.com/wenjie2wang/splines2", + "BugReports": "https://github.com/wenjie2wang/splines2/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Wenjie Wang [aut, cre] (), Jun Yan [aut] ()", + "Maintainer": "Wenjie Wang ", + "Repository": "CRAN" + }, + "srvyr": { + "Package": "srvyr", + "Version": "1.3.1", + "Source": "Repository", + "Type": "Package", + "Title": "'dplyr'-Like Syntax for Summary Statistics of Survey Data", + "Description": "Use piping, verbs like 'group_by' and 'summarize', and other 'dplyr' inspired syntactic style when calculating summary statistics on survey data using functions from the 'survey' package.", + "Date": "2026-02-01", + "Authors@R": "c(person(\"Greg\", \"Freedman Ellis\", email = \"greg.freedman@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Thomas\", \"Lumley\", role = \"ctb\"), person(\"Tomasz\", \"\\u017b\\u00F3\\u0142tak\", role = \"ctb\"), person(\"Ben\", \"Schneider\", role = c(\"aut\", \"ctb\")), person(\"Pavel N.\", \"Krivitsky\", email = \"pavel@statnet.org\", role = c(\"ctb\")))", + "URL": "http://gdfe.co/srvyr/, https://github.com/gergness/srvyr/", + "BugReports": "https://github.com/gergness/srvyr/issues", + "Imports": [ + "dplyr (>= 1.1.0)", + "magrittr", + "methods", + "rlang", + "survey (>= 4.1)", + "tibble", + "tidyr", + "tidyselect", + "vctrs (>= 0.3.0)" + ], + "License": "GPL-2 | GPL-3", + "Suggests": [ + "spelling", + "convey", + "DBI", + "dbplyr", + "ggplot2", + "knitr", + "laeken", + "Matrix", + "rmarkdown (>= 2.2.2)", + "pander", + "RSQLite", + "survival", + "testthat", + "covr" + ], + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.3.3", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Greg Freedman Ellis [aut, cre], Thomas Lumley [ctb], Tomasz Żółtak [ctb], Ben Schneider [aut, ctb], Pavel N. Krivitsky [ctb]", + "Maintainer": "Greg Freedman Ellis ", + "Repository": "CRAN" + }, + "stringfish": { + "Package": "stringfish", + "Version": "0.19.2", + "Source": "Repository", + "Title": "Alt String Implementation", + "Date": "2026-08-04", + "Authors@R": "c( person(\"Travers\", \"Ching\", email = \"traversc@gmail.com\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Phillip\", \"Hazel\", role = c(\"ctb\"), comment = \"Bundled PCRE2 code\"), person(\"Zoltan\", \"Herczeg\", role = c(\"ctb\", \"cph\"), comment = \"Bundled PCRE2 code\"), person(\"University of Cambridge\", role = c(\"cph\"), comment = \"Bundled PCRE2 code\"), person(\"Tilera Corporation\", role = c(\"cph\"), comment = \"Stack-less Just-In-Time compiler bundled with PCRE2\"), person(\"Yann\", \"Collet\", role = c(\"ctb\", \"cph\"), comment = \"Yann Collet is the author of the bundled xxHash code\"), person(\"Martin\", \"Leitner-Ankerl\", role = c(\"ctb\", \"cph\"), comment = \"Bundled ankerl::unordered_dense code\"))", + "Maintainer": "Travers Ching ", + "Description": "Provides an extendable, performant and multithreaded 'alt-string' implementation backed by 'C++' vectors and strings.", + "License": "GPL-3", + "Biarch": "true", + "Encoding": "UTF-8", + "Depends": [ + "R (>= 3.6.0)" + ], + "SystemRequirements": "GNU make, C++17", + "LinkingTo": [ + "Rcpp (>= 0.12.18.3)", + "RcppParallel (>= 6.1.1)" + ], + "Imports": [ + "Rcpp", + "RcppParallel" + ], + "Suggests": [ + "knitr", + "rmarkdown" + ], + "VignetteBuilder": "knitr", + "Copyright": "Copyright for the bundled 'PCRE2' library is held by University of Cambridge, Zoltan Herczeg and Tilera Corporation (Stack-less Just-In-Time compiler); Copyright for the bundled 'xxHash' code is held by Yann Collet; Copyright for the bundled 'ankerl::unordered_dense' code is held by Martin Leitner-Ankerl.", + "URL": "https://github.com/traversc/stringfish", + "BugReports": "https://github.com/traversc/stringfish/issues", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "yes", + "Author": "Travers Ching [aut, cre, cph], Phillip Hazel [ctb] (Bundled PCRE2 code), Zoltan Herczeg [ctb, cph] (Bundled PCRE2 code), University of Cambridge [cph] (Bundled PCRE2 code), Tilera Corporation [cph] (Stack-less Just-In-Time compiler bundled with PCRE2), Yann Collet [ctb, cph] (Yann Collet is the author of the bundled xxHash code), Martin Leitner-Ankerl [ctb, cph] (Bundled ankerl::unordered_dense code)", + "Repository": "CRAN" + }, + "stringi": { + "Package": "stringi", + "Version": "1.8.9", + "Source": "Repository", + "Date": "2026-07-30", + "Title": "Fast and Portable Character String Processing Facilities", + "Description": "A collection of character string/text/natural language processing tools for pattern searching (e.g., with 'Java'-like regular expressions or the 'Unicode' collation algorithm), random string generation, case mapping, string transliteration, concatenation, sorting, padding, wrapping, Unicode normalisation, date-time formatting and parsing, and many more. They are fast, consistent, convenient, and - thanks to 'ICU' (International Components for Unicode) - portable across all locales and platforms. Documentation about 'stringi' is provided via its website at and the paper by Gagolewski (2022, ).", + "URL": "https://stringi.gagolewski.com/, https://github.com/gagolews/stringi, https://icu.unicode.org/", + "BugReports": "https://github.com/gagolews/stringi/issues", + "SystemRequirements": "ICU4C (>= 61, optional)", + "Type": "Package", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "tools", + "utils", + "stats" + ], + "Biarch": "TRUE", + "License": "file LICENSE", + "Authors@R": "c(person(given = \"Marek\", family = \"Gagolewski\", role = c(\"aut\", \"cre\", \"cph\"), email = \"marek@gagolewski.com\", comment = c(ORCID = \"0000-0003-0637-6028\")), person(given = \"Bartek\", family = \"Tartanus\", role = \"ctb\"), person(\"Unicode, Inc. and others\", role=\"ctb\", comment = \"ICU4C source code, Unicode Character Database\") )", + "Encoding": "UTF-8", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "yes", + "Author": "Marek Gagolewski [aut, cre, cph] (ORCID: ), Bartek Tartanus [ctb], Unicode, Inc. and others [ctb] (ICU4C source code, Unicode Character Database)", + "Maintainer": "Marek Gagolewski ", + "License_is_FOSS": "yes", + "Repository": "CRAN" + }, + "stringr": { + "Package": "stringr", + "Version": "1.6.0", + "Source": "Repository", + "Title": "Simple, Consistent Wrappers for Common String Operations", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A consistent, simple and easy to use set of wrappers around the fantastic 'stringi' package. All function and argument names (and positions) are consistent, all functions deal with \"NA\"'s and zero length vectors in the same way, and the output from one function is easy to feed into the input of another.", + "License": "MIT + file LICENSE", + "URL": "https://stringr.tidyverse.org, https://github.com/tidyverse/stringr", + "BugReports": "https://github.com/tidyverse/stringr/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "cli", + "glue (>= 1.6.1)", + "lifecycle (>= 1.0.3)", + "magrittr", + "rlang (>= 1.0.0)", + "stringi (>= 1.5.3)", + "vctrs (>= 0.4.0)" + ], + "Suggests": [ + "covr", + "dplyr", + "gt", + "htmltools", + "htmlwidgets", + "knitr", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/potools/style": "explicit", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre, cph], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "survey": { + "Package": "survey", + "Version": "4.5", + "Source": "Repository", + "Title": "Analysis of Complex Survey Samples", + "Description": "Summary statistics, two-sample tests, rank tests, generalised linear models, cumulative link models, Cox models, loglinear models, and general maximum pseudolikelihood estimation for multistage stratified, cluster-sampled, unequally weighted survey samples. Variances by Taylor series linearisation or replicate weights. Post-stratification, calibration, and raking. Two-phase and multiphase subsampling designs. Graphics. PPS sampling without replacement. Small-area estimation. Dual-frame designs.", + "Authors@R": "c(person(given = \"\\\"Thomas\", family = \"Lumley\\\"\", role = \"cre\", email = \"t.lumley@auckland.ac.nz\"), person(given = \"Peter\", family = \"Gao\", role =\"aut\"), person(given = \"Ben\", family = \"Schneider\", role= \"aut\"), person(given = \"Stas\", family= \"Kolenkikov\", role=\"aut\"))", + "Maintainer": "\"Thomas Lumley\" ", + "License": "GPL-2 | GPL-3", + "Depends": [ + "R (>= 4.1.0)", + "grid", + "methods", + "Matrix", + "survival" + ], + "Imports": [ + "stats", + "graphics", + "splines", + "lattice", + "minqa", + "numDeriv", + "mitools (>= 2.4)", + "Rcpp (>= 0.12.8)" + ], + "LinkingTo": [ + "Rcpp", + "RcppArmadillo" + ], + "VignetteBuilder": "R.rsp, knitr", + "Suggests": [ + "foreign", + "MASS", + "KernSmooth", + "hexbin", + "RSQLite", + "quantreg", + "parallel", + "CompQuadForm", + "DBI", + "AER", + "SUMMER (>= 1.4.0)", + "R.rsp", + "knitr", + "testthat (>= 3.0.0)" + ], + "URL": "http://r-survey.r-forge.r-project.org/survey/", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "\"Thomas Lumley\" [cre], Peter Gao [aut], Ben Schneider [aut], Stas Kolenkikov [aut]", + "Repository": "CRAN" + }, + "survival": { + "Package": "survival", + "Version": "3.8-6", + "Source": "Repository", + "Title": "Survival Analysis", + "Priority": "recommended", + "Date": "2026-01-09", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "graphics", + "Matrix", + "methods", + "splines", + "stats", + "utils" + ], + "LazyData": "Yes", + "LazyDataCompression": "xz", + "ByteCompile": "Yes", + "Authors@R": "c(person(c(\"Terry\", \"M\"), \"Therneau\", email=\"therneau.terry@mayo.edu\", role=c(\"aut\", \"cre\")), person(\"Thomas\", \"Lumley\", role=c(\"ctb\", \"trl\"), comment=\"original S->R port and R maintainer until 2009\"), person(\"Atkinson\", \"Elizabeth\", role=\"ctb\"), person(\"Crowson\", \"Cynthia\", role=\"ctb\"))", + "Description": "Contains the core survival analysis routines, including definition of Surv objects, Kaplan-Meier and Aalen-Johansen (multi-state) curves, Cox models, and parametric accelerated failure time models.", + "License": "LGPL (>= 2)", + "URL": "https://github.com/therneau/survival", + "NeedsCompilation": "yes", + "Author": "Terry M Therneau [aut, cre], Thomas Lumley [ctb, trl] (original S->R port and R maintainer until 2009), Atkinson Elizabeth [ctb], Crowson Cynthia [ctb]", + "Maintainer": "Terry M Therneau ", + "Repository": "CRAN" + }, + "targets": { + "Package": "targets", + "Version": "1.12.0", + "Source": "Repository", + "Title": "Dynamic Function-Oriented 'Make'-Like Declarative Pipelines", + "Description": "Pipeline tools coordinate the pieces of computationally demanding analysis projects. The 'targets' package is a 'Make'-like pipeline tool for statistics and data science in R. The package skips costly runtime for tasks that are already up to date, orchestrates the necessary computation with implicit parallel computing, and abstracts files as R objects. If all the current output matches the current upstream code and data, then the whole pipeline is up to date, and the results are more trustworthy than otherwise. The methodology in this package borrows from GNU 'Make' (2015, ISBN:978-9881443519) and 'drake' (2018, ).", + "License": "MIT + file LICENSE", + "URL": "https://docs.ropensci.org/targets/, https://github.com/ropensci/targets", + "BugReports": "https://github.com/ropensci/targets/issues", + "Authors@R": "c( person( given = c(\"William\", \"Michael\"), family = \"Landau\", role = c(\"aut\", \"cre\"), email = \"will.landau.oss@gmail.com\", comment = c(ORCID = \"0000-0003-1878-3253\") ), person( given = c(\"Matthew\", \"T.\"), family = \"Warkentin\", role = \"ctb\" ), person( given = \"Mark\", family = \"Edmondson\", email = \"r@sunholo.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8434-3881\") ), person( given = \"Samantha\", family = \"Oliver\", role = \"rev\", comment = c(ORCID = \"0000-0001-5668-1165\") ), person( given = \"Tristan\", family = \"Mahr\", role = \"rev\", comment = c(ORCID = \"0000-0002-8890-5116\") ), person( family = \"Eli Lilly and Company\", role = c(\"cph\", \"fnd\") ))", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "base64url (>= 1.4)", + "callr (>= 3.7.0)", + "cli (>= 2.0.2)", + "codetools (>= 0.2.16)", + "data.table (>= 1.16.0)", + "igraph (>= 2.0.0)", + "knitr (>= 1.34)", + "prettyunits (>= 1.1.0)", + "ps (>= 1.8.0)", + "R6 (>= 2.4.1)", + "rlang (>= 1.0.0)", + "secretbase (>= 0.5.0)", + "stats", + "tibble (>= 3.0.1)", + "tidyselect (>= 1.1.0)", + "tools", + "utils", + "vctrs (>= 0.2.4)", + "yaml (>= 2.2.1)" + ], + "Suggests": [ + "autometric (>= 0.1.0)", + "bslib", + "clustermq (>= 0.9.2)", + "crew (>= 0.9.0)", + "curl (>= 4.3)", + "DT (>= 0.14)", + "dplyr (>= 1.0.0)", + "fst (>= 0.9.2)", + "future (>= 1.19.1)", + "future.batchtools (>= 0.9.0)", + "future.callr (>= 0.6.0)", + "gargle (>= 1.2.0)", + "googleCloudStorageR (>= 0.7.0)", + "gt (>= 0.2.2)", + "keras (>= 2.2.5.0)", + "markdown (>= 1.1)", + "nanonext (>= 0.12.0)", + "rmarkdown (>= 2.4)", + "parallelly (>= 1.35.0)", + "paws.common (>= 0.6.4)", + "paws.storage (>= 0.4.0)", + "pkgload (>= 1.1.0)", + "processx (>= 3.4.3)", + "qs2", + "reprex (>= 2.0.0)", + "rstudioapi (>= 0.11)", + "R.utils (>= 2.6.0)", + "shiny (>= 1.5.0)", + "shinybusy (>= 0.2.2)", + "shinyWidgets (>= 0.5.4)", + "tarchetypes", + "testthat (>= 3.0.0)", + "torch (>= 0.1.0)", + "usethis (>= 1.6.3)", + "visNetwork (>= 2.1.2)" + ], + "Encoding": "UTF-8", + "Language": "en-US", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "William Michael Landau [aut, cre] (ORCID: ), Matthew T. Warkentin [ctb], Mark Edmondson [ctb] (ORCID: ), Samantha Oliver [rev] (ORCID: ), Tristan Mahr [rev] (ORCID: ), Eli Lilly and Company [cph, fnd]", + "Maintainer": "William Michael Landau ", + "Repository": "CRAN" + }, + "testthat": { + "Package": "testthat", + "Version": "3.3.2", + "Source": "Repository", + "Title": "Unit Testing for R", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Implementation of utils::recover()\") )", + "Description": "Software testing is important, but, in part because it is frustrating and boring, many of us avoid it. 'testthat' is a testing framework for R that is easy to learn and use, and integrates with your existing 'workflow'.", + "License": "MIT + file LICENSE", + "URL": "https://testthat.r-lib.org, https://github.com/r-lib/testthat", + "BugReports": "https://github.com/r-lib/testthat/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "brio (>= 1.1.5)", + "callr (>= 3.7.6)", + "cli (>= 3.6.5)", + "desc (>= 1.4.3)", + "evaluate (>= 1.0.4)", + "jsonlite (>= 2.0.0)", + "lifecycle (>= 1.0.4)", + "magrittr (>= 2.0.3)", + "methods", + "pkgload (>= 1.4.0)", + "praise (>= 1.0.0)", + "processx (>= 3.8.6)", + "ps (>= 1.9.1)", + "R6 (>= 2.6.1)", + "rlang (>= 1.1.6)", + "utils", + "waldo (>= 0.6.2)", + "withr (>= 3.0.2)" + ], + "Suggests": [ + "covr", + "curl (>= 0.9.5)", + "diffviewer (>= 0.1.0)", + "digest (>= 0.6.33)", + "gh", + "knitr", + "otel", + "otelsdk", + "rmarkdown", + "rstudioapi", + "S7", + "shiny", + "usethis", + "vctrs (>= 0.1.0)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "watcher, parallel*", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Implementation of utils::recover())", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "tibble": { + "Package": "tibble", + "Version": "3.3.1", + "Source": "Repository", + "Title": "Simple Data Frames", + "Authors@R": "c( person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"), person(\"Romain\", \"Francois\", , \"romain@r-enthusiasts.com\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@rstudio.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.", + "License": "MIT + file LICENSE", + "URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble", + "BugReports": "https://github.com/tidyverse/tibble/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "cli", + "lifecycle (>= 1.0.0)", + "magrittr", + "methods", + "pillar (>= 1.8.1)", + "pkgconfig", + "rlang (>= 1.0.2)", + "utils", + "vctrs (>= 0.5.0)" + ], + "Suggests": [ + "bench", + "bit64", + "blob", + "brio", + "callr", + "DiagrammeR", + "dplyr", + "evaluate", + "formattable", + "ggplot2", + "here", + "hms", + "htmltools", + "knitr", + "lubridate", + "nycflights13", + "pkgload", + "purrr", + "rmarkdown", + "stringi", + "testthat (>= 3.0.2)", + "tidyr", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/autostyle/rmd": "false", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants", + "Config/usethis/last-upkeep": "2025-06-07", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "NeedsCompilation": "yes", + "Author": "Kirill Müller [aut, cre] (ORCID: ), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "tidyr": { + "Package": "tidyr", + "Version": "1.3.2", + "Source": "Repository", + "Title": "Tidy Messy Data", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Maximilian\", \"Girlich\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to help to create tidy data, where each column is a variable, each row is an observation, and each cell contains a single value. 'tidyr' contains tools for changing the shape (pivoting) and hierarchy (nesting and 'unnesting') of a dataset, turning deeply nested lists into rectangular data frames ('rectangling'), and extracting values out of string columns. It also includes tools for working with missing values (both implicit and explicit).", + "License": "MIT + file LICENSE", + "URL": "https://tidyr.tidyverse.org, https://github.com/tidyverse/tidyr", + "BugReports": "https://github.com/tidyverse/tidyr/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "cli (>= 3.4.1)", + "dplyr (>= 1.1.0)", + "glue", + "lifecycle (>= 1.0.3)", + "magrittr", + "purrr (>= 1.0.1)", + "rlang (>= 1.1.1)", + "stringr (>= 1.5.0)", + "tibble (>= 2.1.1)", + "tidyselect (>= 1.2.1)", + "utils", + "vctrs (>= 0.5.2)" + ], + "Suggests": [ + "covr", + "data.table", + "knitr", + "readr", + "repurrrsive (>= 1.1.0)", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "cpp11 (>= 0.4.0)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Davis Vaughan [aut], Maximilian Girlich [aut], Kevin Ushey [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.1", + "Source": "Repository", + "Title": "Select from a Set of Strings", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection.", + "License": "MIT + file LICENSE", + "URL": "https://tidyselect.r-lib.org, https://github.com/r-lib/tidyselect", + "BugReports": "https://github.com/r-lib/tidyselect/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli (>= 3.3.0)", + "glue (>= 1.3.0)", + "lifecycle (>= 1.0.3)", + "rlang (>= 1.0.4)", + "vctrs (>= 0.5.2)", + "withr" + ], + "Suggests": [ + "covr", + "crayon", + "dplyr", + "knitr", + "magrittr", + "rmarkdown", + "stringr", + "testthat (>= 3.1.1)", + "tibble (>= 2.1.3)" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.0.9000", + "NeedsCompilation": "yes", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "tzdb": { + "Package": "tzdb", + "Version": "0.5.0", + "Source": "Repository", + "Title": "Time Zone Database Information", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Howard\", \"Hinnant\", role = \"cph\", comment = \"Author of the included date library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides an up-to-date copy of the Internet Assigned Numbers Authority (IANA) Time Zone Database. It is updated periodically to reflect changes made by political bodies to time zone boundaries, UTC offsets, and daylight saving time rules. Additionally, this package provides a C++ interface for working with the 'date' library. 'date' provides comprehensive support for working with dates and date-times, which this package exposes to make it easier for other R packages to utilize. Headers are provided for calendar specific calculations, along with a limited interface for time zone manipulations.", + "License": "MIT + file LICENSE", + "URL": "https://tzdb.r-lib.org, https://github.com/r-lib/tzdb", + "BugReports": "https://github.com/r-lib/tzdb/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "cpp11 (>= 0.5.2)" + ], + "Biarch": "yes", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Howard Hinnant [cph] (Author of the included date library), Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.6", + "Source": "Repository", + "Title": "Unicode Text Processing", + "Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))", + "Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.", + "License": "Apache License (== 2.0) | file LICENSE", + "URL": "https://krlmlr.github.io/utf8/, https://github.com/krlmlr/utf8", + "BugReports": "https://github.com/krlmlr/utf8/issues", + "Depends": [ + "R (>= 2.10)" + ], + "Suggests": [ + "cli", + "covr", + "knitr", + "rlang", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr, rmarkdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "yes", + "Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre] (ORCID: ), Unicode, Inc. [cph, dtc] (Unicode Character Database)", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.7.3", + "Source": "Repository", + "Title": "Vector Helpers", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"data.table team\", role = \"cph\", comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Defines new notions of prototype and size that are used to provide tools for consistent and well-founded type-coercion and size-recycling, and are in turn connected to ideas of type- and size-stability useful for analysing function interfaces.", + "License": "MIT + file LICENSE", + "URL": "https://vctrs.r-lib.org/, https://github.com/r-lib/vctrs", + "BugReports": "https://github.com/r-lib/vctrs/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "lifecycle (>= 1.0.3)", + "rlang (>= 1.1.7)" + ], + "Suggests": [ + "bit64", + "covr", + "crayon", + "dplyr (>= 0.8.5)", + "generics", + "knitr", + "pillar (>= 1.4.4)", + "pkgdown (>= 2.0.1)", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble (>= 3.1.3)", + "waldo (>= 0.2.0)", + "withr", + "xml2", + "zeallot" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "KeepSource": "true", + "Language": "en-GB", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Lionel Henry [aut], Davis Vaughan [aut, cre], data.table team [cph] (Radix sort based on data.table's forder() and their contribution to R's order()), Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "vegan": { + "Package": "vegan", + "Version": "2.7-6", + "Source": "Repository", + "Title": "Community Ecology Package", + "Authors@R": "c(person(\"Jari\", \"Oksanen\", role=c(\"aut\",\"cre\"), email=\"jhoksane@gmail.com\", comment = c(ORCID=\"0000-0001-7102-9626\")), person(\"Gavin L.\", \"Simpson\", role=\"aut\", email=\"ucfagls@gmail.com\", comment = c(ORCID = \"0000-0002-9084-8413\")), person(\"F. Guillaume\", \"Blanchet\", role=\"aut\"), person(\"Roeland\", \"Kindt\", role=\"aut\"), person(\"Pierre\", \"Legendre\", role=\"aut\"), person(\"Peter R.\", \"Minchin\", role=\"aut\"), person(\"R.B.\", \"O'Hara\", role=\"aut\"), person(\"Peter\", \"Solymos\", role=\"aut\"), person(\"M. Henry H.\", \"Stevens\", role=\"aut\"), person(\"Eduard\", \"Szoecs\", role=\"aut\"), person(\"Helene\", \"Wagner\", role=\"aut\"), person(\"Matt\", \"Barbour\", role=\"ctb\"), person(\"Michael\", \"Bedward\", role=\"aut\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\"), person(\"Ben\", \"Bolker\", role=\"aut\"), person(\"Daniel\", \"Borcard\", role=\"aut\"), person(\"Tuomas\", \"Borman\", role=\"ctb\"), person(\"Gustavo\", \"Carvalho\", role=\"aut\"), person(\"Michael\", \"Chirico\", role=\"ctb\"), person(\"Miquel\", \"De Caceres\", role=\"aut\"), person(\"Sebastien\", \"Durand\", role=\"aut\"), person(\"Heloisa Beatriz Antoniazi\", \"Evangelista\", role=\"aut\"), person(\"Rich\", \"FitzJohn\", role=\"ctb\"), person(\"Michael\", \"Friendly\", role=\"ctb\"), person(\"Brendan\",\"Furneaux\", role=\"ctb\"), person(\"Geoffrey\", \"Hannigan\", role=\"aut\"), person(\"Isaac\", \"Heida\", role=\"ctb\"), person(\"Mark O.\", \"Hill\", role=\"aut\"), person(\"Leo\", \"Lahti\", role=\"aut\"), person(\"Cameron\", \"Martino\", role=\"aut\"), person(\"Dan\", \"McGlinn\", role=\"ctb\"), person(\"Marie-Helene\", \"Ouellette\", role=\"aut\"), person(\"Eduardo\", \"Ribeiro Cunha\", role=\"aut\"), person(\"Tyler\", \"Smith\", role=\"aut\"), person(\"Adrian\", \"Stier\", role=\"aut\"), person(\"Cajo J.F.\", \"Ter Braak\", role=\"aut\"), person(\"James\", \"Weedon\", role=\"aut\"))", + "Depends": [ + "permute (>= 0.9-0)", + "R (>= 4.1.0)" + ], + "Suggests": [ + "parallel", + "knitr", + "markdown" + ], + "Imports": [ + "MASS", + "cluster", + "lattice", + "mgcv" + ], + "VignetteBuilder": "utils, knitr", + "Description": "Ordination methods, diversity analysis and other functions for community and vegetation ecologists.", + "License": "GPL-2", + "BugReports": "https://github.com/vegandevs/vegan/issues", + "URL": "https://vegandevs.github.io/vegan/, https://github.com/vegandevs/vegan", + "NeedsCompilation": "yes", + "Author": "Jari Oksanen [aut, cre] (ORCID: ), Gavin L. Simpson [aut] (ORCID: ), F. Guillaume Blanchet [aut], Roeland Kindt [aut], Pierre Legendre [aut], Peter R. Minchin [aut], R.B. O'Hara [aut], Peter Solymos [aut], M. Henry H. Stevens [aut], Eduard Szoecs [aut], Helene Wagner [aut], Matt Barbour [ctb], Michael Bedward [aut], Henrik Bengtsson [ctb], Ben Bolker [aut], Daniel Borcard [aut], Tuomas Borman [ctb], Gustavo Carvalho [aut], Michael Chirico [ctb], Miquel De Caceres [aut], Sebastien Durand [aut], Heloisa Beatriz Antoniazi Evangelista [aut], Rich FitzJohn [ctb], Michael Friendly [ctb], Brendan Furneaux [ctb], Geoffrey Hannigan [aut], Isaac Heida [ctb], Mark O. Hill [aut], Leo Lahti [aut], Cameron Martino [aut], Dan McGlinn [ctb], Marie-Helene Ouellette [aut], Eduardo Ribeiro Cunha [aut], Tyler Smith [aut], Adrian Stier [aut], Cajo J.F. Ter Braak [aut], James Weedon [aut]", + "Maintainer": "Jari Oksanen ", + "Repository": "CRAN" + }, + "vroom": { + "Package": "vroom", + "Version": "1.7.1", + "Source": "Repository", + "Title": "Read and Write Rectangular Text Data Quickly", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel and writes to disk asynchronously from formatting.", + "License": "MIT + file LICENSE", + "URL": "https://vroom.tidyverse.org, https://github.com/tidyverse/vroom", + "BugReports": "https://github.com/tidyverse/vroom/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "bit64", + "cli (>= 3.2.0)", + "crayon", + "glue", + "hms", + "lifecycle (>= 1.0.3)", + "methods", + "rlang (>= 1.1.0)", + "stats", + "tibble (>= 2.0.0)", + "tidyselect", + "tzdb (>= 0.1.1)", + "vctrs (>= 0.2.0)", + "withr" + ], + "Suggests": [ + "archive", + "bench (>= 1.1.0)", + "covr", + "curl", + "dplyr", + "forcats", + "fs", + "ggplot2", + "knitr", + "patchwork", + "prettyunits", + "purrr", + "rmarkdown", + "rstudioapi", + "scales", + "spelling", + "testthat (>= 2.1.0)", + "tidyr", + "utils", + "waldo", + "xml2" + ], + "LinkingTo": [ + "cpp11 (>= 0.2.0)", + "progress (>= 1.2.3)", + "tzdb (>= 0.1.1)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "nycflights13, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "false", + "Config/usethis/last-upkeep": "2025-11-25", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "Config/build/compilation-database": "true", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (ORCID: ), Hadley Wickham [aut] (ORCID: ), Jennifer Bryan [aut, cre] (ORCID: ), Shelby Bearrows [ctb], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [cph] (grisu3 implementation), Mikkel Jørgensen [cph] (grisu3 implementation), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "waldo": { + "Package": "waldo", + "Version": "0.6.2", + "Source": "Repository", + "Title": "Find Differences Between R Objects", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Compare complex R objects and reveal the key differences. Designed particularly for use in testing packages where being able to quickly isolate key differences makes understanding test failures much easier.", + "License": "MIT + file LICENSE", + "URL": "https://waldo.r-lib.org, https://github.com/r-lib/waldo", + "BugReports": "https://github.com/r-lib/waldo/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "cli", + "diffobj (>= 0.3.4)", + "glue", + "methods", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "bit64", + "R6", + "S7", + "testthat (>= 3.0.0)", + "withr", + "xml2" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "withr": { + "Package": "withr", + "Version": "3.0.3", + "Source": "Repository", + "Title": "Run Code 'With' Temporarily Modified Global State", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", , \"krlmlr+r@mailbox.org\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A set of functions to run code 'with' safely and temporarily modified global state. Many of these functions were originally a part of the 'devtools' package, this provides a simple package with limited dependencies to provide access to these functions.", + "License": "MIT + file LICENSE", + "URL": "https://withr.r-lib.org, https://github.com/r-lib/withr#readme", + "BugReports": "https://github.com/r-lib/withr/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "graphics", + "grDevices" + ], + "Suggests": [ + "callr", + "DBI", + "knitr", + "methods", + "rlang", + "rmarkdown (>= 2.12)", + "RSQLite", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'aaa.R' 'collate.R' 'connection.R' 'db.R' 'defer-exit.R' 'standalone-defer.R' 'defer.R' 'devices.R' 'local_.R' 'with_.R' 'dir.R' 'env.R' 'file.R' 'language.R' 'libpaths.R' 'locale.R' 'makevars.R' 'namespace.R' 'options.R' 'par.R' 'path.R' 'rng.R' 'seed.R' 'wrap.R' 'sink.R' 'tempfile.R' 'timezone.R' 'torture.R' 'utils.R' 'with.R'", + "NeedsCompilation": "no", + "Author": "Jim Hester [aut], Lionel Henry [aut, cre], Kirill Müller [aut], Kevin Ushey [aut], Hadley Wickham [aut], Winston Chang [aut], Jennifer Bryan [ctb], Richard Cotton [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "xfun": { + "Package": "xfun", + "Version": "0.60", + "Source": "Repository", + "Type": "Package", + "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Daijiang\", \"Li\", role = \"ctb\"), person(\"Xianying\", \"Tan\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person() )", + "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "grDevices", + "stats", + "tools" + ], + "Suggests": [ + "testit", + "parallel", + "codetools", + "methods", + "rstudioapi", + "tinytex (>= 0.30)", + "mime", + "litedown (>= 0.6)", + "commonmark", + "knitr (>= 1.50)", + "remotes", + "pak", + "curl", + "xml2", + "jsonlite", + "magick", + "yaml", + "data.table", + "qs2" + ], + "License": "MIT + file LICENSE", + "URL": "https://github.com/yihui/xfun", + "BugReports": "https://github.com/yihui/xfun/issues", + "Encoding": "UTF-8", + "VignetteBuilder": "litedown", + "Config/roxygen2/version": "8.0.0", + "NeedsCompilation": "yes", + "Author": "Yihui Xie [aut, cre, cph] (ORCID: , URL: https://yihui.org), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (ORCID: ), Christophe Dervieux [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "yaml": { + "Package": "yaml", + "Version": "2.3.12", + "Source": "Repository", + "Type": "Package", + "Title": "Methods to Convert R Data to YAML and Back", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"cre\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Shawn\", \"Garbett\", , \"shawn.garbett@vumc.org\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4079-5621\")), person(\"Jeremy\", \"Stephens\", role = c(\"aut\", \"ctb\")), person(\"Kirill\", \"Simonov\", role = \"aut\"), person(\"Yihui\", \"Xie\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Zhuoer\", \"Dong\", role = \"ctb\"), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"reikoch\", role = \"ctb\"), person(\"Will\", \"Beasley\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5613-5006\")), person(\"Brendan\", \"O'Connor\", role = \"ctb\"), person(\"Michael\", \"Quinn\", role = \"ctb\"), person(\"Charlie\", \"Gao\", role = \"ctb\"), person(c(\"Gregory\", \"R.\"), \"Warnes\", role = \"ctb\"), person(c(\"Zhian\", \"N.\"), \"Kamvar\", role = \"ctb\") )", + "Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter () for R.", + "License": "BSD_3_clause + file LICENSE", + "URL": "https://yaml.r-lib.org, https://github.com/r-lib/yaml/", + "BugReports": "https://github.com/r-lib/yaml/issues", + "Suggests": [ + "knitr", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [cre] (ORCID: ), Shawn Garbett [ctb] (ORCID: ), Jeremy Stephens [aut, ctb], Kirill Simonov [aut], Yihui Xie [ctb] (ORCID: ), Zhuoer Dong [ctb], Jeffrey Horner [ctb], reikoch [ctb], Will Beasley [ctb] (ORCID: ), Brendan O'Connor [ctb], Michael Quinn [ctb], Charlie Gao [ctb], Gregory R. Warnes [ctb], Zhian N. Kamvar [ctb]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + } + } +} diff --git a/research/environment/smoke-test-result.json b/research/environment/smoke-test-result.json new file mode 100644 index 0000000..7da3dec --- /dev/null +++ b/research/environment/smoke-test-result.json @@ -0,0 +1,140 @@ +{ + "python": "3.12.14 (main, Aug 14 2026, 15:40:22) [MSC v.1944 64 bit (AMD64)]", + "imports": { + "numpy": { + "status": "passed", + "version": "2.5.3" + }, + "scipy": { + "status": "passed", + "version": "1.18.1" + }, + "pandas": { + "status": "passed", + "version": "3.0.6" + }, + "polars": { + "status": "passed", + "version": "1.44.2" + }, + "pyarrow": { + "status": "passed", + "version": "25.0.1" + }, + "duckdb": { + "status": "passed", + "version": "1.5.5" + }, + "statsmodels": { + "status": "passed", + "version": "0.15.0" + }, + "pymc": { + "status": "passed", + "version": "6.3.2" + }, + "pytensor": { + "status": "passed", + "version": "3.3.2" + }, + "arviz": { + "status": "passed", + "version": "1.3.0" + }, + "nutpie": { + "status": "passed", + "version": "0.16.11" + }, + "jax": { + "status": "passed", + "version": "0.11.2" + }, + "numpyro": { + "status": "passed", + "version": "0.22.0" + }, + "blackjax": { + "status": "passed", + "version": "1.6.2" + }, + "bambi": { + "status": "passed", + "version": "0.21.0" + }, + "semopy": { + "status": "passed", + "version": "2.3.11" + }, + "factor_analyzer": { + "status": "passed", + "version": "unknown" + }, + "pingouin": { + "status": "passed", + "version": "0.6.1" + }, + "girth": { + "status": "passed", + "version": "unknown" + }, + "torch": { + "status": "passed", + "version": "2.14.0+cu130" + }, + "torchvision": { + "status": "passed", + "version": "0.29.0+cu130" + }, + "transformers": { + "status": "passed", + "version": "5.17.0" + }, + "sentence_transformers": { + "status": "passed", + "version": "6.1.0" + }, + "xgboost": { + "status": "passed", + "version": "3.4.1" + }, + "tabpfn": { + "status": "passed", + "version": "9.0.0" + } + }, + "tests": { + "pymc_sampling": { + "status": "passed", + "detail": { + "posterior_mean": 0.15326990867173734, + "draws": 50, + "chains": 1 + } + }, + "semopy_cfa": { + "status": "passed", + "detail": { + "success": true, + "objective": 8.346892954591567e-08 + } + }, + "factor_analyzer": { + "status": "passed", + "detail": { + "loading_shape": [ + 4, + 1 + ] + } + }, + "torch_cuda": { + "status": "passed", + "detail": { + "torch": "2.14.0+cu130", + "cuda_runtime": "13.0", + "device": "NVIDIA GeForce RTX 5060 Ti", + "finite": true + } + } + } +} \ No newline at end of file diff --git a/research/environment/smoke_test.py b/research/environment/smoke_test.py new file mode 100644 index 0000000..0bc0c08 --- /dev/null +++ b/research/environment/smoke_test.py @@ -0,0 +1,145 @@ +import importlib +import json +import os +from pathlib import Path +import sys +import traceback + + +PROJECT_ROOT = Path(__file__).resolve().parents[2] +CACHE_ROOT = PROJECT_ROOT / ".cache" +cache_settings = { + "LOCALAPPDATA": CACHE_ROOT / "localappdata", + "MPLCONFIGDIR": CACHE_ROOT / "matplotlib", + "NUMBA_CACHE_DIR": CACHE_ROOT / "numba", + "SKB_DATA_DIRECTORY": CACHE_ROOT / "skrub", + "HF_HOME": CACHE_ROOT / "huggingface", + "TORCH_HOME": CACHE_ROOT / "torch", + "XDG_CACHE_HOME": CACHE_ROOT, +} +for key, path in cache_settings.items(): + path.mkdir(parents=True, exist_ok=True) + os.environ[key] = str(path) +os.environ["PYTENSOR_FLAGS"] = f"base_compiledir={CACHE_ROOT / 'pytensor'}" + +import numpy as np + + +results = {"python": sys.version, "imports": {}, "tests": {}} + + +def record(name, fn): + try: + value = fn() + results["tests"][name] = {"status": "passed", "detail": value} + except Exception as exc: + results["tests"][name] = { + "status": "failed", + "detail": f"{type(exc).__name__}: {exc}", + "traceback": traceback.format_exc(), + } + + +for module_name in [ + "numpy", "scipy", "pandas", "polars", "pyarrow", "duckdb", + "statsmodels", "pymc", "pytensor", "arviz", "nutpie", + "jax", "numpyro", "blackjax", "bambi", "semopy", + "factor_analyzer", "pingouin", "girth", "torch", "torchvision", + "transformers", "sentence_transformers", "xgboost", + "tabpfn", +]: + try: + module = importlib.import_module(module_name) + results["imports"][module_name] = { + "status": "passed", + "version": getattr(module, "__version__", "unknown"), + } + except Exception as exc: + results["imports"][module_name] = { + "status": "failed", + "detail": f"{type(exc).__name__}: {exc}", + } + + +def pymc_test(): + import pymc as pm + + rng = np.random.default_rng(20260920) + observed = rng.normal(0.35, 1.0, size=40) + with pm.Model(): + mu = pm.Normal("mu", 0.0, 1.0) + pm.Normal("y", mu, 1.0, observed=observed) + inference = pm.sample( + draws=50, + tune=50, + chains=1, + cores=1, + random_seed=20260920, + progressbar=False, + compute_convergence_checks=False, + ) + posterior_mean = float(inference.posterior["mu"].mean()) + return {"posterior_mean": posterior_mean, "draws": 50, "chains": 1} + + +def sem_test(): + import pandas as pd + import semopy + + rng = np.random.default_rng(20260920) + latent = rng.normal(size=160) + frame = pd.DataFrame( + { + "x1": 0.8 * latent + rng.normal(scale=0.4, size=160), + "x2": 0.7 * latent + rng.normal(scale=0.5, size=160), + "x3": 0.9 * latent + rng.normal(scale=0.3, size=160), + } + ) + model = semopy.Model("factor =~ x1 + x2 + x3") + fit = model.fit(frame) + return {"success": bool(fit.success), "objective": float(fit.fun)} + + +def factor_test(): + from factor_analyzer import FactorAnalyzer + + rng = np.random.default_rng(20260920) + latent = rng.normal(size=(180, 1)) + data = latent @ np.array([[0.8, 0.7, 0.9, 0.6]]) + rng.normal( + scale=0.45, size=(180, 4) + ) + fitted = FactorAnalyzer(n_factors=1, rotation=None).fit(data) + return {"loading_shape": list(fitted.loadings_.shape)} + + +def torch_test(): + import torch + + if not torch.cuda.is_available(): + raise RuntimeError("torch.cuda.is_available() is false") + left = torch.randn((256, 256), device="cuda") + right = torch.randn((256, 256), device="cuda") + result = left @ right + torch.cuda.synchronize() + return { + "torch": torch.__version__, + "cuda_runtime": torch.version.cuda, + "device": torch.cuda.get_device_name(0), + "finite": bool(torch.isfinite(result).all().item()), + } + + +record("pymc_sampling", pymc_test) +record("semopy_cfa", sem_test) +record("factor_analyzer", factor_test) +record("torch_cuda", torch_test) + +serialized = json.dumps(results, ensure_ascii=False, indent=2) +(Path(__file__).parent / "smoke-test-result.json").write_text( + serialized, encoding="utf-8" +) +print(serialized) + +failed_imports = [k for k, v in results["imports"].items() if v["status"] != "passed"] +failed_tests = [k for k, v in results["tests"].items() if v["status"] != "passed"] +raise SystemExit(1 if failed_imports or failed_tests else 0) diff --git a/research/experiments/build_literature_matrix.mjs b/research/experiments/build_literature_matrix.mjs new file mode 100644 index 0000000..8b186ef --- /dev/null +++ b/research/experiments/build_literature_matrix.mjs @@ -0,0 +1,77 @@ +import fs from "node:fs/promises"; +import { SpreadsheetFile, Workbook } from "@oai/artifact-tool"; + +const headers = [ + "source_id", "citation", "year", "publication_status", "evidence_type", + "domain_and_data", "sample_or_scope", "main_result", "project_use", + "limitations", "supports", "does_not_support", "doi_or_id", "source_url", + "verification_status", "checked_date" +]; + +const rows = [ + ["L01", "Chen et al. Pre-statistical harmonization of behavioral instruments across eight surveys and trials", 2021, "peer_reviewed", "empirical workflow/methods", "Behavioral instruments across eight dementia surveys and trials", "Eight studies; manual instrument review plus automated raw-data checks", "Comparable-looking items often differed in wording, response options, scoring, or direction and required pre-statistical review", "Defines the source-review and crosswalk work required before statistical linking", "Different population and constructs; does not test semantic embeddings or cross-national DIF", "Official wording, response options, scoring, and populations must be reviewed before pooling", "Semantic similarity alone establishes psychometric equivalence", "10.1186/s12874-021-01431-6", "https://doi.org/10.1186/s12874-021-01431-6", "verified_primary", "2026-09-20"], + ["L02", "Kołczyńska. Combining multiple survey sources: A reproducible workflow and toolbox for survey data harmonization", 2022, "peer_reviewed", "methods/workflow", "Four cross-national survey projects; trust items", "ESS, EVS, EQLS and Eurobarometer example", "Crosswalk-centered, human-auditable documentation improves reproducibility of ex-post harmonization", "Supports machine-readable source crosswalks, recodes, provenance and status tracking", "Focuses recoding/documentation rather than latent linking or item semantics", "Harmonization decisions and transformations need reusable documentation", "A documented crosswalk proves measurement invariance", "10.1177/20597991221077923", "https://doi.org/10.1177/20597991221077923", "verified_primary", "2026-09-20"], + ["L03", "McElroy et al. Using natural language processing to facilitate the harmonisation of mental health questionnaires", 2024, "peer_reviewed", "empirical validation", "Five mental-health questionnaires in a UK adult sample", "2,058 participants; 741 item pairs", "Sentence-BERT semantic similarity correlated moderately with empirical item correlations and predicted held-out pair correlations with small error", "Closest evidence for semantic item matching and response-structure signal", "Adult UK sample, overlapping questionnaires and shared respondents; manual rules still needed; no cross-country DIF or survey-design inference", "Text embeddings can help propose harmonization candidates", "Embedding similarity verifies psychometric equivalence or transportability", "10.1186/s12888-024-05954-2", "https://doi.org/10.1186/s12888-024-05954-2", "verified_primary", "2026-09-20"], + ["L04", "Ravenda et al. Rethinking psychometrics through LLMs: how item semantics shape measurement and prediction in psychological questionnaires", 2025, "peer_reviewed", "empirical proof-of-concept", "Big Five, DASS-42, GAD-7 and PHQ-9 questionnaire data", "Large public questionnaire datasets; proof-of-concept response prediction", "Semantic structure predicted empirical correlation patterns and supported prediction of responses to unseen items", "Shows semantic representations can encode response-structure information in psychological questionnaires", "Cross-cultural and multilingual transport were not established; predictive proof-of-concept is not survey harmonization", "Item semantics may explain part of response covariance", "Universal psychometric equivalence, DIF recovery or calibrated cross-national latent scores", "10.1038/s41598-025-21289-8", "https://doi.org/10.1038/s41598-025-21289-8", "verified_primary", "2026-09-20"], + ["L05", "Yancey et al. BERT-IRT: Accelerating Item Piloting with BERT Embeddings and Explainable IRT Models", 2024, "peer_reviewed_conference", "method plus operational evaluation", "Duolingo English Test items", "High-stakes language assessment item bank; exact proprietary sample details require full-paper extraction", "BERT embeddings and engineered features reduced pilot length while maintaining reported criterion validity and reliability", "Direct precedent for text features predicting IRT item parameters", "Educational test items differ from suicide-related survey items; does not address cross-country DIF, complex samples or latent phenotype harmonization", "Text-derived item features can inform item-parameter estimation", "This project's core method is unprecedented or immediately transferable to health surveys", "ACL Anthology 2024.bea-1.35", "https://aclanthology.org/2024.bea-1.35/", "verified_primary", "2026-09-20"], + ["L06", "Chen and Chen. From Text to Parameters: Predicting Item Parameters from Embedding Regularization with Reliability and Design Ceilings", 2026, "preprint", "method/benchmark", "Mathematics and medical-licensure item banks", "Two item banks; repeated cross-validation and simulation-based ceilings", "Difficulty was more predictable than other parameters; reliability/design ceilings and repeated splits changed interpretation", "Requires uncertainty-aware targets, repeated grouped validation and ceiling analysis for semantic parameter prediction", "Preprint; educational/assessment domains; not cross-national mental-health surveys", "Parameter-prediction benchmarks need target reliability and design ceilings", "Reported RMSE alone establishes useful semantic signal", "arXiv:2607.07141", "https://arxiv.org/abs/2607.07141", "verified_preprint", "2026-09-20"], + ["L07", "Peters et al. Text-Based Approaches to Item Difficulty Modeling in Large-Scale Assessments: A Systematic Review", 2025, "preprint", "systematic review", "Automated item-difficulty prediction", "37 articles through May 2025", "Language models can predict item difficulty in some settings, but studies vary in datasets, splits, targets and metrics", "Maps existing text-to-difficulty literature and prevents novelty overclaiming", "Preprint; focuses large-scale assessment rather than health questionnaires, DIF or survey design", "Text-based difficulty prediction is an established research area", "Reported best-case metrics transfer to this project", "arXiv:2509.23486", "https://arxiv.org/abs/2509.23486", "verified_preprint", "2026-09-20"], + ["L08", "Muthén and Asparouhov. IRT studies of many groups: the alignment method", 2014, "peer_reviewed", "method plus Monte Carlo", "Binary knowledge items across many country groups", "Two surveys plus simulation", "Alignment estimates group factor means/variances without requiring exact invariance and reports parameter non-invariance", "Core comparator for many-country measurement invariance and DIF", "Requires a prespecified factor structure and adequate linkage; alignment is not proof that all groups share one construct", "Approximate invariance can be studied across many groups", "Alignment repairs absent empirical connections or identifies a scale from semantics alone", "10.3389/fpsyg.2014.00978", "https://doi.org/10.3389/fpsyg.2014.00978", "verified_primary", "2026-09-20"], + ["L09", "Mansolf et al. Extensions of Multiple-Group Item Response Theory Alignment", 2020, "peer_reviewed", "method, simulation and application", "International psychiatric genomics consortium with disparate item sets and formats", "Multiple sites/instruments plus real-data-based simulation", "Extended alignment accommodated differing item sets and response categories and recovered parameters in simulation", "Closest latent-harmonization comparator for psychiatric phenotypes with nonidentical instruments", "Needs specified construct/factor model and empirical connections; population and sampling designs differ from this project", "Disparate psychiatric item sets can sometimes be aligned with explicit assumptions", "Semantic priors alone create a common scale or eliminate anchor requirements", "10.1177/0013164419897307", "https://doi.org/10.1177/0013164419897307", "verified_primary", "2026-09-20"], + ["L10", "Heinz et al. Item response theory and differential test functioning analysis of the HBSC-Symptom-Checklist across 46 countries", 2022, "peer_reviewed", "cross-national psychometric application", "Eight-item adolescent HBSC symptom checklist", "229,906 adolescents across 46 countries", "Configural/metric invariance was more defensible than scalar invariance; alignment identified item non-invariance", "Demonstrates the scale of cross-country adolescent DIF and consequences for comparisons", "Uses one established common instrument, not different survey tools or unseen-item semantic prediction", "Cross-national adolescent comparisons require item-level invariance/DIF checks", "A common questionnaire automatically yields scalar comparability", "10.1186/s12874-022-01698-3", "https://doi.org/10.1186/s12874-022-01698-3", "verified_primary", "2026-09-20"], + ["L11", "Savitsky and Williams. Pseudo Bayesian Mixed Models under Informative Sampling", 2022, "peer_reviewed", "method, simulation and application", "Hierarchical models under informative multistage sampling", "Simulation plus business-establishment survey example", "Weighting only unit likelihood contributions can remain biased when random effects correlate with design; weighting random-effect distributions addresses this setting", "Constrains how hierarchical country/survey effects and design weights can be combined", "Not an IRT application; requires inclusion-probability information and design assumptions", "Complex-sample Bayesian multilevel models need design-aware treatment beyond naive weighted likelihood", "Multiplying every likelihood by a weight guarantees correct interval coverage", "10.2478/jos-2022-0039", "https://doi.org/10.2478/jos-2022-0039", "verified_primary", "2026-09-20"], + ["L12", "Wu and Stephenson. Bayesian estimation methods for survey data with potential applications to health disparities research", 2024, "peer_reviewed_review", "narrative methodological review", "Bayesian analysis of complex survey data", "Reviews MRP, weighted pseudo-likelihood and synthetic-population approaches", "No single Bayesian survey method is universally sufficient; assumptions and target estimands determine the route", "Provides the survey-design method map for later model specifications and sensitivity analyses", "Review rather than project-specific validation; does not resolve IRT identification", "Multiple defensible Bayesian survey strategies exist and must be chosen by estimand/design", "Bayesian modeling automatically corrects informative sampling", "10.1002/wics.1633", "https://doi.org/10.1002/wics.1633", "verified_primary", "2026-09-20"], + ["L13", "Wu et al. Statistical harmonization of versions of measures across studies using external data", 2025, "peer_reviewed", "calibration-sample method", "Self-rated health and memory measured with different response formats", "External calibration sample of 300 participants", "A bridge sample answering both versions enabled model-based statistical harmonization with moderate agreement", "Shows why bridge data may be necessary when archival surveys lack empirical links", "Different constructs and older clinical population; external sample design differs from multi-item IRT", "Targeted bridge data can identify transformations unavailable from disconnected archives", "Text similarity can replace empirical bridge data without uncertainty", "10.1016/j.annepidem.2025.01.002", "https://doi.org/10.1016/j.annepidem.2025.01.002", "verified_primary", "2026-09-20"] +]; + +const csvEscape = (value) => { + const text = String(value ?? ""); + return /[",\r\n]/.test(text) ? `"${text.replaceAll('"', '""')}"` : text; +}; + +const csv = [headers, ...rows].map((row) => row.map(csvEscape).join(",")).join("\r\n") + "\r\n"; +const outputDir = new URL("../protocol/", import.meta.url); +await fs.mkdir(outputDir, { recursive: true }); +await fs.writeFile(new URL("literature_matrix.csv", outputDir), csv, "utf8"); + +const workbook = Workbook.create(); +const sheet = workbook.worksheets.add("Literature Matrix"); +sheet.showGridLines = false; +sheet.getRange("A1:P1").merge(); +sheet.getRange("A1").values = [["Focused literature matrix"]]; +sheet.getRange("A2:P2").merge(); +sheet.getRange("A2").values = [["Questionnaire harmonization, semantic item models, cross-national DIF, and complex-survey Bayesian inference. Checked 2026-09-20."]]; +sheet.getRange("A4:P17").values = [headers, ...rows]; +sheet.tables.add("A4:P17", true, "LiteratureMatrix"); +sheet.freezePanes.freezeRows(4); +sheet.freezePanes.freezeColumns(2); +sheet.getRange("A1:P17").format.font = { name: "Arial", size: 10 }; +sheet.getRange("A1").format.font = { name: "Arial", size: 15, bold: true, color: "#1F2937" }; +sheet.getRange("A2").format.font = { name: "Arial", size: 10, italic: true, color: "#4B5563" }; +sheet.getRange("A4:P4").format = { fill: "#1F4E78", font: { name: "Arial", size: 10, bold: true, color: "#FFFFFF" }, wrapText: true, verticalAlignment: "center" }; +sheet.getRange("A5:P17").format.wrapText = true; +sheet.getRange("A5:P17").format.verticalAlignment = "top"; +sheet.getRange("A4:P17").format.borders = { insideHorizontal: { style: "thin", color: "#D9E2F3" }, bottom: { style: "thin", color: "#B4C6E7" } }; +sheet.getRange("A:A").format.columnWidth = 10; +sheet.getRange("B:B").format.columnWidth = 40; +sheet.getRange("C:C").format.columnWidth = 8; +sheet.getRange("D:E").format.columnWidth = 20; +sheet.getRange("F:F").format.columnWidth = 36; +sheet.getRange("G:G").format.columnWidth = 34; +sheet.getRange("H:L").format.columnWidth = 44; +sheet.getRange("M:M").format.columnWidth = 24; +sheet.getRange("N:N").format.columnWidth = 42; +sheet.getRange("O:O").format.columnWidth = 18; +sheet.getRange("P:P").format.columnWidth = 13; +sheet.getRange("C5:C17").format.numberFormat = "0"; +sheet.getRange("P5:P17").format.numberFormat = "yyyy-mm-dd"; + +const check = await workbook.inspect({ kind: "table", range: "Literature Matrix!A4:P17", include: "values,formulas", tableMaxRows: 16, tableMaxCols: 16, maxChars: 12000 }); +console.log(check.ndjson); +const errors = await workbook.inspect({ kind: "match", searchTerm: "#REF!|#DIV/0!|#VALUE!|#NAME\\?|#N/A|#NUM!|#NULL!|#SPILL!|#CALC!", options: { useRegex: true, maxResults: 100 }, summary: "final formula error scan" }); +console.log(errors.ndjson); +const preview = await workbook.render({ sheetName: "Literature Matrix", range: "A1:P17", scale: 0.8, format: "png" }); +await fs.writeFile(new URL("literature_matrix_preview.png", outputDir), new Uint8Array(await preview.arrayBuffer())); +const xlsx = await SpreadsheetFile.exportXlsx(workbook); +await xlsx.save(new URL("literature_matrix.xlsx", outputDir).pathname.replace(/^\/(.:)/, "$1")); + diff --git a/research/protocol/literature_matrix.csv b/research/protocol/literature_matrix.csv new file mode 100644 index 0000000..7eb23c9 --- /dev/null +++ b/research/protocol/literature_matrix.csv @@ -0,0 +1,14 @@ +source_id,citation,year,publication_status,evidence_type,domain_and_data,sample_or_scope,main_result,project_use,limitations,supports,does_not_support,doi_or_id,source_url,verification_status,checked_date +L01,Chen et al. Pre-statistical harmonization of behavioral instruments across eight surveys and trials,2021,peer_reviewed,empirical workflow/methods,Behavioral instruments across eight dementia surveys and trials,Eight studies; manual instrument review plus automated raw-data checks,"Comparable-looking items often differed in wording, response options, scoring, or direction and required pre-statistical review",Defines the source-review and crosswalk work required before statistical linking,Different population and constructs; does not test semantic embeddings or cross-national DIF,"Official wording, response options, scoring, and populations must be reviewed before pooling",Semantic similarity alone establishes psychometric equivalence,10.1186/s12874-021-01431-6,https://doi.org/10.1186/s12874-021-01431-6,verified_primary,2026-09-20 +L02,Kołczyńska. Combining multiple survey sources: A reproducible workflow and toolbox for survey data harmonization,2022,peer_reviewed,methods/workflow,Four cross-national survey projects; trust items,"ESS, EVS, EQLS and Eurobarometer example","Crosswalk-centered, human-auditable documentation improves reproducibility of ex-post harmonization","Supports machine-readable source crosswalks, recodes, provenance and status tracking",Focuses recoding/documentation rather than latent linking or item semantics,Harmonization decisions and transformations need reusable documentation,A documented crosswalk proves measurement invariance,10.1177/20597991221077923,https://doi.org/10.1177/20597991221077923,verified_primary,2026-09-20 +L03,McElroy et al. Using natural language processing to facilitate the harmonisation of mental health questionnaires,2024,peer_reviewed,empirical validation,Five mental-health questionnaires in a UK adult sample,"2,058 participants; 741 item pairs",Sentence-BERT semantic similarity correlated moderately with empirical item correlations and predicted held-out pair correlations with small error,Closest evidence for semantic item matching and response-structure signal,"Adult UK sample, overlapping questionnaires and shared respondents; manual rules still needed; no cross-country DIF or survey-design inference",Text embeddings can help propose harmonization candidates,Embedding similarity verifies psychometric equivalence or transportability,10.1186/s12888-024-05954-2,https://doi.org/10.1186/s12888-024-05954-2,verified_primary,2026-09-20 +L04,Ravenda et al. Rethinking psychometrics through LLMs: how item semantics shape measurement and prediction in psychological questionnaires,2025,peer_reviewed,empirical proof-of-concept,"Big Five, DASS-42, GAD-7 and PHQ-9 questionnaire data",Large public questionnaire datasets; proof-of-concept response prediction,Semantic structure predicted empirical correlation patterns and supported prediction of responses to unseen items,Shows semantic representations can encode response-structure information in psychological questionnaires,Cross-cultural and multilingual transport were not established; predictive proof-of-concept is not survey harmonization,Item semantics may explain part of response covariance,"Universal psychometric equivalence, DIF recovery or calibrated cross-national latent scores",10.1038/s41598-025-21289-8,https://doi.org/10.1038/s41598-025-21289-8,verified_primary,2026-09-20 +L05,Yancey et al. BERT-IRT: Accelerating Item Piloting with BERT Embeddings and Explainable IRT Models,2024,peer_reviewed_conference,method plus operational evaluation,Duolingo English Test items,High-stakes language assessment item bank; exact proprietary sample details require full-paper extraction,BERT embeddings and engineered features reduced pilot length while maintaining reported criterion validity and reliability,Direct precedent for text features predicting IRT item parameters,"Educational test items differ from suicide-related survey items; does not address cross-country DIF, complex samples or latent phenotype harmonization",Text-derived item features can inform item-parameter estimation,This project's core method is unprecedented or immediately transferable to health surveys,ACL Anthology 2024.bea-1.35,https://aclanthology.org/2024.bea-1.35/,verified_primary,2026-09-20 +L06,Chen and Chen. From Text to Parameters: Predicting Item Parameters from Embedding Regularization with Reliability and Design Ceilings,2026,preprint,method/benchmark,Mathematics and medical-licensure item banks,Two item banks; repeated cross-validation and simulation-based ceilings,Difficulty was more predictable than other parameters; reliability/design ceilings and repeated splits changed interpretation,"Requires uncertainty-aware targets, repeated grouped validation and ceiling analysis for semantic parameter prediction",Preprint; educational/assessment domains; not cross-national mental-health surveys,Parameter-prediction benchmarks need target reliability and design ceilings,Reported RMSE alone establishes useful semantic signal,arXiv:2607.07141,https://arxiv.org/abs/2607.07141,verified_preprint,2026-09-20 +L07,Peters et al. Text-Based Approaches to Item Difficulty Modeling in Large-Scale Assessments: A Systematic Review,2025,preprint,systematic review,Automated item-difficulty prediction,37 articles through May 2025,"Language models can predict item difficulty in some settings, but studies vary in datasets, splits, targets and metrics",Maps existing text-to-difficulty literature and prevents novelty overclaiming,"Preprint; focuses large-scale assessment rather than health questionnaires, DIF or survey design",Text-based difficulty prediction is an established research area,Reported best-case metrics transfer to this project,arXiv:2509.23486,https://arxiv.org/abs/2509.23486,verified_preprint,2026-09-20 +L08,Muthén and Asparouhov. IRT studies of many groups: the alignment method,2014,peer_reviewed,method plus Monte Carlo,Binary knowledge items across many country groups,Two surveys plus simulation,Alignment estimates group factor means/variances without requiring exact invariance and reports parameter non-invariance,Core comparator for many-country measurement invariance and DIF,Requires a prespecified factor structure and adequate linkage; alignment is not proof that all groups share one construct,Approximate invariance can be studied across many groups,Alignment repairs absent empirical connections or identifies a scale from semantics alone,10.3389/fpsyg.2014.00978,https://doi.org/10.3389/fpsyg.2014.00978,verified_primary,2026-09-20 +L09,Mansolf et al. Extensions of Multiple-Group Item Response Theory Alignment,2020,peer_reviewed,"method, simulation and application",International psychiatric genomics consortium with disparate item sets and formats,Multiple sites/instruments plus real-data-based simulation,Extended alignment accommodated differing item sets and response categories and recovered parameters in simulation,Closest latent-harmonization comparator for psychiatric phenotypes with nonidentical instruments,Needs specified construct/factor model and empirical connections; population and sampling designs differ from this project,Disparate psychiatric item sets can sometimes be aligned with explicit assumptions,Semantic priors alone create a common scale or eliminate anchor requirements,10.1177/0013164419897307,https://doi.org/10.1177/0013164419897307,verified_primary,2026-09-20 +L10,Heinz et al. Item response theory and differential test functioning analysis of the HBSC-Symptom-Checklist across 46 countries,2022,peer_reviewed,cross-national psychometric application,Eight-item adolescent HBSC symptom checklist,"229,906 adolescents across 46 countries",Configural/metric invariance was more defensible than scalar invariance; alignment identified item non-invariance,Demonstrates the scale of cross-country adolescent DIF and consequences for comparisons,"Uses one established common instrument, not different survey tools or unseen-item semantic prediction",Cross-national adolescent comparisons require item-level invariance/DIF checks,A common questionnaire automatically yields scalar comparability,10.1186/s12874-022-01698-3,https://doi.org/10.1186/s12874-022-01698-3,verified_primary,2026-09-20 +L11,Savitsky and Williams. Pseudo Bayesian Mixed Models under Informative Sampling,2022,peer_reviewed,"method, simulation and application",Hierarchical models under informative multistage sampling,Simulation plus business-establishment survey example,Weighting only unit likelihood contributions can remain biased when random effects correlate with design; weighting random-effect distributions addresses this setting,Constrains how hierarchical country/survey effects and design weights can be combined,Not an IRT application; requires inclusion-probability information and design assumptions,Complex-sample Bayesian multilevel models need design-aware treatment beyond naive weighted likelihood,Multiplying every likelihood by a weight guarantees correct interval coverage,10.2478/jos-2022-0039,https://doi.org/10.2478/jos-2022-0039,verified_primary,2026-09-20 +L12,Wu and Stephenson. Bayesian estimation methods for survey data with potential applications to health disparities research,2024,peer_reviewed_review,narrative methodological review,Bayesian analysis of complex survey data,"Reviews MRP, weighted pseudo-likelihood and synthetic-population approaches",No single Bayesian survey method is universally sufficient; assumptions and target estimands determine the route,Provides the survey-design method map for later model specifications and sensitivity analyses,Review rather than project-specific validation; does not resolve IRT identification,Multiple defensible Bayesian survey strategies exist and must be chosen by estimand/design,Bayesian modeling automatically corrects informative sampling,10.1002/wics.1633,https://doi.org/10.1002/wics.1633,verified_primary,2026-09-20 +L13,Wu et al. Statistical harmonization of versions of measures across studies using external data,2025,peer_reviewed,calibration-sample method,Self-rated health and memory measured with different response formats,External calibration sample of 300 participants,A bridge sample answering both versions enabled model-based statistical harmonization with moderate agreement,Shows why bridge data may be necessary when archival surveys lack empirical links,Different constructs and older clinical population; external sample design differs from multi-item IRT,Targeted bridge data can identify transformations unavailable from disconnected archives,Text similarity can replace empirical bridge data without uncertainty,10.1016/j.annepidem.2025.01.002,https://doi.org/10.1016/j.annepidem.2025.01.002,verified_primary,2026-09-20 diff --git a/research/protocol/literature_matrix.xlsx b/research/protocol/literature_matrix.xlsx new file mode 100644 index 0000000..df3105e Binary files /dev/null and b/research/protocol/literature_matrix.xlsx differ diff --git a/research/protocol/literature_matrix.xlsx.inspect.ndjson b/research/protocol/literature_matrix.xlsx.inspect.ndjson new file mode 100644 index 0000000..b0ea6c9 --- /dev/null +++ b/research/protocol/literature_matrix.xlsx.inspect.ndjson @@ -0,0 +1,230 @@ +{"kind":"workbook","id":"wb/gycqr5","sheets":1,"tables":1} +{"kind":"sheet","id":"ws/dub4q8","name":"Literature Matrix","index":0,"range":"A1:P17","address":"A1:P17","tables":1} +{"kind":"table","sheet":"Literature Matrix","address":"A1:P17","rows":17,"cols":16,"values":[["Focused literature matrix",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],["Questionnaire harmonization, semantic item models, cross-national DIF, and complex-survey Bayesian inference. Checked 2026-09-20.",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],["source_id","citation","year","publication_status","evidence_type","domain_and_data","sample_or_scope","main_result","project_use","limitations","supports","does_not_support","doi_or_id","source_url","verification_status","checked_date"],["L01","Chen et al. Pre-statistical harmonization of behavioral instruments across eight surveys and trials",2021,"peer_reviewed","empirical workflow/methods","Behavioral instruments across eight dementia surveys and trials","Eight studies; manual instrument review plus automated raw-data checks","Comparable-looking items often differed in wording, response options, scoring, or direction and required pre-statistical review","Defines the source-review and crosswalk work required before statistical linking","Different population and constructs; does not test semantic embeddings or cross-national DIF","Official wording, response options, scoring, and populations must be reviewed before pooling","Semantic similarity alone establishes psychometric equivalence","10.1186/s12874-021-01431-6","https://doi.org/10.1186/s12874-021-01431-6","verified_primary","2026-09-20"],["L02","Kołczyńska. Combining multiple survey sources: A reproducible workflow and toolbox for survey data harmonization",2022,"peer_reviewed","methods/workflow","Four cross-national survey projects; trust items","ESS, EVS, EQLS and Eurobarometer example","Crosswalk-centered, human-auditable documentation improves reproducibility of ex-post harmonization","Supports machine-readable source crosswalks, recodes, provenance and status tracking","Focuses recoding/documentation rather than latent linking or item semantics","Harmonization decisions and transformations need reusable documentation","A documented crosswalk proves measurement invariance","10.1177/20597991221077923","https://doi.org/10.1177/20597991221077923","verified_primary","2026-09-20"],["L03","McElroy et al. Using natural language processing to facilitate the harmonisation of mental health questionnaires",2024,"peer_reviewed","empirical validation","Five mental-health questionnaires in a UK adult sample","2,058 participants; 741 item pairs","Sentence-BERT semantic similarity correlated moderately with empirical item correlations and predicted held-out pair correlations with small error","Closest evidence for semantic item matching and response-structure signal","Adult UK sample, overlapping questionnaires and shared respondents; manual rules still needed; no cross-country DIF or survey-design inference","Text embeddings can help propose harmonization candidates","Embedding similarity verifies psychometric equivalence or transportability","10.1186/s12888-024-05954-2","https://doi.org/10.1186/s12888-024-05954-2","verified_primary","2026-09-20"],["L04","Ravenda et al. Rethinking psychometrics through LLMs: how item semantics shape measurement and prediction in psychological questionnaires",2025,"peer_reviewed","empirical proof-of-concept","Big Five, DASS-42, GAD-7 and PHQ-9 questionnaire data","Large public questionnaire datasets; proof-of-concept response prediction","Semantic structure predicted empirical correlation patterns and supported prediction of responses to unseen items","Shows semantic representations can encode response-structure information in psychological questionnaires","Cross-cultural and multilingual transport were not established; predictive proof-of-concept is not survey harmonization","Item semantics may explain part of response covariance","Universal psychometric equivalence, DIF recovery or calibrated cross-national latent scores","10.1038/s41598-025-21289-8","https://doi.org/10.1038/s41598-025-21289-8","verified_primary","2026-09-20"],["L05","Yancey et al. BERT-IRT: Accelerating Item Piloting with BERT Embeddings and Explainable IRT Models",2024,"peer_reviewed_conference","method plus operational evaluation","Duolingo English Test items","High-stakes language assessment item bank; exact proprietary sample details require full-paper extraction","BERT embeddings and engineered features reduced pilot length while maintaining reported criterion validity and reliability","Direct precedent for text features predicting IRT item parameters","Educational test items differ from suicide-related survey items; does not address cross-country DIF, complex samples or latent phenotype harmonization","Text-derived item features can inform item-parameter estimation","This project's core method is unprecedented or immediately transferable to health surveys","ACL Anthology 2024.bea-1.35","https://aclanthology.org/2024.bea-1.35/","verified_primary","2026-09-20"],["L06","Chen and Chen. From Text to Parameters: Predicting Item Parameters from Embedding Regularization with Reliability and Design Ceilings",2026,"preprint","method/benchmark","Mathematics and medical-licensure item banks","Two item banks; repeated cross-validation and simulation-based ceilings","Difficulty was more predictable than other parameters; reliability/design ceilings and repeated splits changed interpretation","Requires uncertainty-aware targets, repeated grouped validation and ceiling analysis for semantic parameter prediction","Preprint; educational/assessment domains; not cross-national mental-health surveys","Parameter-prediction benchmarks need target reliability and design ceilings","Reported RMSE alone establishes useful semantic signal","arXiv:2607.07141","https://arxiv.org/abs/2607.07141","verified_preprint","2026-09-20"],["L07","Peters et al. Text-Based Approaches to Item Difficulty Modeling in Large-Scale Assessments: A Systematic Review",2025,"preprint","systematic review","Automated item-difficulty prediction","37 articles through May 2025","Language models can predict item difficulty in some settings, but studies vary in datasets, splits, targets and metrics","Maps existing text-to-difficulty literature and prevents novelty overclaiming","Preprint; focuses large-scale assessment rather than health questionnaires, DIF or survey design","Text-based difficulty prediction is an established research area","Reported best-case metrics transfer to this project","arXiv:2509.23486","https://arxiv.org/abs/2509.23486","verified_preprint","2026-09-20"],["L08","Muthén and Asparouhov. IRT studies of many groups: the alignment method",2014,"peer_reviewed","method plus Monte Carlo","Binary knowledge items across many country groups","Two surveys plus simulation","Alignment estimates group factor means/variances without requiring exact invariance and reports parameter non-invariance","Core comparator for many-country measurement invariance and DIF","Requires a prespecified factor structure and adequate linkage; alignment is not proof that all groups share one construct","Approximate invariance can be studied across many groups","Alignment repairs absent empirical connections or identifies a scale from semantics alone","10.3389/fpsyg.2014.00978","https://doi.org/10.3389/fpsyg.2014.00978","verified_primary","2026-09-20"],["L09","Mansolf et al. Extensions of Multiple-Group Item Response Theory Alignment",2020,"peer_reviewed","method, simulation and application","International psychiatric genomics consortium with disparate item sets and formats","Multiple sites/instruments plus real-data-based simulation","Extended alignment accommodated differing item sets and response categories and recovered parameters in simulation","Closest latent-harmonization comparator for psychiatric phenotypes with nonidentical instruments","Needs specified construct/factor model and empirical connections; population and sampling designs differ from this project","Disparate psychiatric item sets can sometimes be aligned with explicit assumptions","Semantic priors alone create a common scale or eliminate anchor requirements","10.1177/0013164419897307","https://doi.org/10.1177/0013164419897307","verified_primary","2026-09-20"],["L10","Heinz et al. Item response theory and differential test functioning analysis of the HBSC-Symptom-Checklist across 46 countries",2022,"peer_reviewed","cross-national psychometric application","Eight-item adolescent HBSC symptom checklist","229,906 adolescents across 46 countries","Configural/metric invariance was more defensible than scalar invariance; alignment identified item non-invariance","Demonstrates the scale of cross-country adolescent DIF and consequences for comparisons","Uses one established common instrument, not different survey tools or unseen-item semantic prediction","Cross-national adolescent comparisons require item-level invariance/DIF checks","A common questionnaire automatically yields scalar comparability","10.1186/s12874-022-01698-3","https://doi.org/10.1186/s12874-022-01698-3","verified_primary","2026-09-20"],["L11","Savitsky and Williams. Pseudo Bayesian Mixed Models under Informative Sampling",2022,"peer_reviewed","method, simulation and application","Hierarchical models under informative multistage sampling","Simulation plus business-establishment survey example","Weighting only unit likelihood contributions can remain biased when random effects correlate with design; weighting random-effect distributions addresses this setting","Constrains how hierarchical country/survey effects and design weights can be combined","Not an IRT application; requires inclusion-probability information and design assumptions","Complex-sample Bayesian multilevel models need design-aware treatment beyond naive weighted likelihood","Multiplying every likelihood by a weight guarantees correct interval coverage","10.2478/jos-2022-0039","https://doi.org/10.2478/jos-2022-0039","verified_primary","2026-09-20"],["L12","Wu and Stephenson. Bayesian estimation methods for survey data with potential applications to health disparities research",2024,"peer_reviewed_review","narrative methodological review","Bayesian analysis of complex survey data","Reviews MRP, weighted pseudo-likelihood and synthetic-population approaches","No single Bayesian survey method is universally sufficient; assumptions and target estimands determine the route","Provides the survey-design method map for later model specifications and sensitivity analyses","Review rather than project-specific validation; does not resolve IRT identification","Multiple defensible Bayesian survey strategies exist and must be chosen by estimand/design","Bayesian modeling automatically corrects informative sampling","10.1002/wics.1633","https://doi.org/10.1002/wics.1633","verified_primary","2026-09-20"],["L13","Wu et al. Statistical harmonization of versions of measures across studies using external data",2025,"peer_reviewed","calibration-sample method","Self-rated health and memory measured with different response formats","External calibration sample of 300 participants","A bridge sample answering both versions enabled model-based statistical harmonization with moderate agreement","Shows why bridge data may be necessary when archival surveys lack empirical links","Different constructs and older clinical population; external sample design differs from multi-item IRT","Targeted bridge data can identify transformations unavailable from disconnected archives","Text similarity can replace empirical bridge data without uncertainty","10.1016/j.annepidem.2025.01.002","https://doi.org/10.1016/j.annepidem.2025.01.002","verified_primary","2026-09-20"]]} +{"kind":"region","sheet":"Literature Matrix","address":"A4:P17","rows":14,"cols":16,"nonEmpty":224,"text":224,"maxTextLength":166,"preview":[["source_id","citation","year","publication_status","evidence_type","domain_and_data"],["L01","Chen et al. Pre-statistical harmonization of behavioral instruments across ei...","2021","peer_reviewed","empirical workflow/methods","Behavioral instruments across eight dementia surveys and trials"],["L02","Kołczyńska. Combining multiple survey sources: A reproducible workflow and to...","2022","peer_reviewed","methods/workflow","Four cross-national survey projects; trust items"],["L03","McElroy et al. Using natural language processing to facilitate the harmonisat...","2024","peer_reviewed","empirical validation","Five mental-health questionnaires in a UK adult sample"],["L04","Ravenda et al. Rethinking psychometrics through LLMs: how item semantics shap...","2025","peer_reviewed","empirical proof-of-concept","Big Five, DASS-42, GAD-7 and PHQ-9 questionnaire data"]],"previewAddress":"A4:F8","previewRows":5,"previewCols":6} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A1","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"bold":true,"fontSize":15,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"1F2937"},"gradientStops":[],"pictureEffects":[]}},"border":{},"wrapText":false,"horizontalAlignment":"general","styleId":2}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A2","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"italic":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"4B5563"},"gradientStops":[],"pictureEffects":[]}},"border":{},"wrapText":false,"horizontalAlignment":"general","styleId":3}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P4","style":{"fill":{"type":1,"color":{"type":1,"value":"1F4E78"},"gradientStops":[],"pictureEffects":[]},"font":{"bold":true,"fontSize":10,"typeface":"Arial","fill":{"type":0,"color":{"type":1,"value":"FFFFFF"},"gradientStops":[],"pictureEffects":[]}},"border":{"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":10}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P5","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P6","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P7","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P8","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P9","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P10","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P11","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P12","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P13","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P14","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P15","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":13}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"wrapText":true,"horizontalAlignment":"general","styleId":11}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P16","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"D9E2F3"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":15}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"A17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"B17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"C17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"numberFormat":"0","wrapText":true,"horizontalAlignment":"general","styleId":14}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"D17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"E17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"F17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"G17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"H17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"I17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"J17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"K17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"L17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"M17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"N17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"O17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"wrapText":true,"horizontalAlignment":"general","styleId":12}} +{"kind":"computedStyle","sheet":"Literature Matrix","for":"P17","style":{"fill":{"type":3,"gradientStops":[],"pattern":{"patternType":1},"pictureEffects":[]},"font":{"fontSize":10,"typeface":"Arial"},"border":{"top":{"style":"thin","color":{"type":1,"value":"D9E2F3"}},"bottom":{"style":"thin","color":{"type":1,"value":"B4C6E7"}}},"numberFormat":"yyyy-mm-dd","wrapText":true,"horizontalAlignment":"general","styleId":16}} \ No newline at end of file diff --git a/research/protocol/literature_matrix_preview.png b/research/protocol/literature_matrix_preview.png new file mode 100644 index 0000000..3b3057a Binary files /dev/null and b/research/protocol/literature_matrix_preview.png differ diff --git a/research/protocol/literature_positioning.md b/research/protocol/literature_positioning.md new file mode 100644 index 0000000..b465627 --- /dev/null +++ b/research/protocol/literature_positioning.md @@ -0,0 +1,69 @@ +# 阶段 0 文献定位与贡献边界 + +日期:2026-09-20 +矩阵:`literature_matrix.csv` +范围:聚焦检索,不是 PRISMA 系统综述 + +## 检索问题 + +本轮只覆盖支撑 Gate 0 的五个问题: + +1. 跨调查行为/心理问卷在统计建模前需要怎样的来源和题目审核? +2. NLP/LLM 题目表示是否已经用于问卷匹配或响应结构预测? +3. 文本特征是否已经用于预测 IRT 题目参数? +4. 多组 IRT、alignment 和 DIF 如何处理多国家或不同题集? +5. Bayesian 层级模型如何处理复杂和信息性抽样? + +检索优先使用期刊页面、PubMed/PMC、ACL Anthology 和论文预印本原页。无法独立确认存在或元数据的来源不进入矩阵。同行评审与预印本分开标记。 + +## 证据综合 + +### 1. 数据协调必须先做题目和来源审计 + +Chen 等和 Kołczyńska 的工作支持先核对研究总体、题目正文、回答选项、计分方向、版本及转换记录。它们不支持仅凭相似变量名合并,也不支持把有文档的 crosswalk 当作测量等价证据。 + +### 2. 语义问卷协调不是空白领域 + +McElroy 等已用 Sentence-BERT 比较心理健康问卷题目,并在共同作答样本中检验语义相似与实证相关。Ravenda 等进一步展示题目语义与问卷响应结构及 unseen-item 响应预测的关系。因此,本项目不能宣称首次把语言模型用于心理问卷结构或协调。 + +### 3. 文本预测 IRT 参数已有直接先例 + +BERT-IRT 已把 BERT 嵌入和工程特征用于题目参数估计。Chen 与 Chen 的预印本及 Peters 等的预印本综述进一步表明 text-to-parameter / item-difficulty modeling 已形成独立研究线,并提示目标可靠性上限、重复交叉验证和 scale-free 指标的重要性。因此,“让嵌入预测题目难度”本身不是充分创新。 + +### 4. 多组、跨国和不同题集协调已有成熟比较对象 + +Muthén 与 Asparouhov 的 alignment、Mansolf 等对不同题集/回答格式的扩展,以及 Heinz 等对 46 国青少年量表的分析,构成项目必须比较或讨论的方法基础。共同问卷也可能不满足 scalar invariance;不同题集的 alignment 仍需要预设构念结构和经验连接。 + +### 5. 复杂抽样不能用简单加权似然一句带过 + +Savitsky 与 Williams 表明,在多层信息性抽样下,只给个体 likelihood 加权仍可能不足。Wu 与 Stephenson 的综述也显示 MRP、pseudo-likelihood 和 synthetic population 各自依赖不同估计目标和设计信息。本项目必须把设计型描述性估计、模型内权重处理和设计一致的区间/重抽样检查分开。 + +## 当前可辩护的贡献候选 + +现有矩阵没有发现一项已核验工作同时完成以下组合: + +- 以官方题目、回答标签、时间窗口和真实复杂抽样回答建立跨 GSHS、YRBS、NSDUH 的可追溯题库; +- 在题目家族级留出下,让多语言语义表示条件化阈值、区分度和受约束 DIF; +- 同时评估未见题目、未见问卷、未见国家/地区和时间外迁移; +- 对未见题目/国家效应传播不确定性,而不是设为零; +- 与直接协调、传统/层级 IRT、人工标签和非语义模型做公平消融; +- 明确处理权重、PSU、stratum 及设计型不确定性。 + +这只是阶段 0 的候选贡献边界,不是首创证明。正式论文前仍需扩大检索、做引用追踪和更新检索。 + +## 对研究设计的约束 + +1. 语义只提供候选先验或预测信息,不能替代经验锚定与可识别性。 +2. 训练/测试必须按题目家族和外层域分组;单次随机划分和 RMSE 不足以支持新题目校准。 +3. 对经验题目参数进行监督学习时,需传播参数估计误差或使用后验样本。 +4. 若跨调查图不连通,应提出桥接样本或限制主张,不用语义相似伪造共同标度。 +5. alignment 和其他传统协调方法是必要基线,不是可省略的背景文献。 +6. 复杂抽样区间需独立验证;Bayesian 标签本身不保证设计一致性。 + +## 矩阵构成 + +- 总条目:13 +- 同行评审:11 +- 预印本:2 +- 每条均记录:证据类型、数据/样本、主要结果、项目用途、限制、允许支持与不允许支持的主张、DOI/永久链接和核验状态。 + diff --git a/research/protocol/project_charter.md b/research/protocol/project_charter.md new file mode 100644 index 0000000..e525c24 --- /dev/null +++ b/research/protocol/project_charter.md @@ -0,0 +1,138 @@ +# Language-Conditioned Psychometric Harmonization Model:项目章程 + +版本:0.1.0 +冻结日期:2026-09-20 +状态:`passed_for_gate_0` +适用范围:阶段 0–2;阶段 2 完成后依据可识别性证据修订 + +## 1. 项目目的与主要研究问题 + +本项目不是普通个体风险预测竞赛,也不预设所有自杀相关变量属于一个单维量表。项目首先确认数据结构支持 IRT、层级测量、阶段/多结局模型还是只能直接协调。 + +**Primary RQ:** 在 GSHS、YRBS 与 NSDUH 青少年相关数据中,题目正文、时间窗口和回答标签的语义表示,能否相对于最佳适用的无文本层级测量基线和人工构念标签基线,提高未见题目家族、未见问卷版本及未见国家/工具上的测量预测与校准,同时不造成有实质意义的区间质量退化? + +支撑问题: + +1. 现有调查的题目共现、锚定连接和题目家族多样性是否足以识别各构念? +2. 措辞、时间窗口、回答格式、语言、国家、年份和工具是否产生有实质意义的 DIF 或测量非等价? +3. 题目语义能否解释训练资料中的响应结构和题目参数,并跨题目家族泛化? +4. 对未见国家、工具和题目,模型的不确定性是否校准;zero-shot 与 few-shot 的表现如何? +5. 复杂抽样、缺失/跳题、锚题和总体定义的合理替代方案是否改变结论? + +## 2. 可证伪假设 + +语言条件化测量模型在预先冻结的外层迁移任务中,相对于最佳适用的 M0/M1/M2 与人工标签基线,在指定共同主指标上达到预设最小有意义改善,且校准或覆盖不劣于预设界限。 + +改善阈值、非劣界限和主指标数值将在阶段 2 的信息量审计和阶段 3 的模拟/功效校准后冻结。若语义模型没有稳定增益,项目输出应是阴性 benchmark 或适用边界,不更换测试集或事后挑选指标。 + +## 3. 目标总体和时间地域范围 + +- 对象:青少年调查参与者。 +- GSHS:跨国开发候选,主要是学校在读样本;常见核心年龄为 13–17 岁,但必须逐国家—年份组件核验。 +- YRBS:问卷和时间迁移候选;美国高中生样本不得外推到全部美国青少年。 +- NSDUH:外部候选;家庭抽样框与学校调查框不可静默视为同一总体。 +- 跨工具比较优先使用年龄与适用总体共同支持域。精确年龄带在阶段 1 建立总体适用表后冻结;不能统一的总体分层报告。 +- YRBS 原始年份候选为 1991–2023;当前处理入口只到 2019,2021/2023 在布局验证前隔离。 +- NSDUH 当前处理候选为 2021–2024,只纳入确认属于青少年模块且有官方问题/编码证据的变量。 +- 国家背景仅在测量层建立后加入,并按调查时点可得性匹配。 + +## 4. 构念与变量角色 + +测量层分开登记,不预设单维: + +1. suicidal ideation +2. suicide plan +3. suicide attempt(二元和次数形式分开) +4. self-harm(是否共模需证据) +5. sadness/hopelessness(是否共模需证据) + +欺凌、孤独、睡眠、物质使用、家庭/同伴支持、暴力暴露及国家背景属于解释或分层变量,不因相关或预测作用自动变成自杀风险量表题目。横断面关联不表述为因果或个体纵向预测。 + +阶段 2 为每个构念选择:IRT/多维测量、阶段/潜类别/多结局、直接二分类/频数协调,或分调查报告。 + +## 5. 数据角色与唯一候选入口 + +| 数据源 | 候选角色 | 唯一候选入口 | 状态 | +|---|---|---|---| +| GSHS | 跨国开发及未见国家验证 | `Dataset/GSHS-全球学生健康调查数据/GSHS/01_data/GSHS.csv` | `audit_required` | +| YRBS | 问卷版本及时间迁移 | 处理包 `YRBS/full_by_year`(1991–2019);原始核验用 `YRBS_National_1991_2023/raw` | `conditional` | +| NSDUH | 外部工具/总体候选 | `可直接分析数据包_NSDUH_YRBS/NSDUH/nsduh_2021_2024_full.parquet` | `conditional` | +| World Bank/WHO context | 后期国家—年份解释层 | `WHO-country_context/world_bank_country_year_1990_2025.csv` 及来源长表 | `conditional` | +| 其他目录 | 外部候选、文档或 provenance archive | 无 | 不进入核心分析,除非书面改版 | + +入口是审计入口,不表示其中变量已经通过题义、总体、设计或许可审计。 + +## 6. 冻结的迁移任务 + +1. **Unseen item family**:同一家族全部措辞、翻译、回答和监督信号留出。 +2. **Unseen questionnaire version**:整个版本及泄漏等价版本留出。 +3. **Unseen country**:该国全部年份和组件回答留出,未知国家效应从层级分布预测并传播不确定性。 +4. **Unseen region**:整个预定地区留出。 +5. **Temporal extrapolation**:早期训练、后期测试,背景按预测时点可得性处理。 +6. **Cross-instrument**:总体和结局定义审计通过后再跨工具评估。 + +随机个体划分只用于调试或辅助比较,不作为核心迁移主张证据。 + +## 7. 估计目标和指标层级 + +主要目标是题目阈值/难度、区分度、DIF、共同标度成立时的潜在表型/群体分布,以及新题目/新域的预测分布与不确定性。 + +共同主指标候选:未见题目家族 held-out log score;未见国家/工具共同目标上的校准或分布误差;模拟已知真值下参数恢复与覆盖;群体估计的设计加权误差与区间表现。AUPRC、AUROC、Brier 等为辅助预测指标,不能单独证明测量协调成功。 + +## 8. 识别和调查设计原则 + +- 语义相似只产生候选连接,不证明锚题不变或共同标度成立。 +- 国家均值、阈值平移和无约束 DIF 可能混淆;正式模型必须声明标度、参考组、锚题和 DIF 约束。 +- 独立信息单位主要是题目家族/版本及国家/工具等外层单元;大量受访者不能补偿题目种类不足。 +- 保留权重、PSU、stratum、国家—年份及组件标识。 +- 权重进入似然不等同于设计一致区间;描述性设计方差、模型内权重和设计型重抽样分开验证。 +- 未施测、不适用、合法跳题、拒答、不知道、普通缺失和真实阴性分开。 + +## 9. 范围外事项 + +- 临床诊断、个体自杀预测或资源分配工具。 +- 用国家自杀死亡率作个体结局。 +- 无总体限定地把学校样本外推到全部青少年。 +- 在跨构念/数据集/任务证据不足时称为 foundation model。 +- 在阶段 2/3 前冻结最终深度架构、最终嵌入模型或结果后阈值。 +- 把 AI 预审登记为两名人类审核者。 +- 分发未经确认允许的微观数据。 + +## 10. 伦理、许可和治理 + +- 数据按去标识化二次数据处理,但使用仍受来源现行条款和机构要求约束。 +- 不重新识别参与者,不公开再分发许可未确认的微数据。 +- 主要结局进入确认性分析前需两名实际审核者复核;AI 检查只标 provisional。 +- 输出记录 AI 辅助、数据来源、版本、哈希、模型/包版本及 unknown 状态。 +- 原始数据只读;衍生产物写入 `research/`。 +- 改变总体、构念、数据角色、测试任务或成功判据时,必须提高本章程版本并在 `Progression.md` 记录原因。 + +## 11. 阶段 0 待验证清单 + +1. 各调查组件的年龄、在校状态、地域、语言和问卷版本。 +2. 主要结局官方正文、答案标签、时间窗口、跳题和派生规则。 +3. GSHS 权重、PSU、stratum 的调查级有效性。 +4. YRBS 2021/2023 官方布局、导入程序、记录数和本地文件一致性。 +5. NSDUH 青少年/成人/COVID/派生变量边界及正确权重/方差设计。 +6. 锚题图、题目共现、阳性事件、结构缺失及有效题目家族数。 +7. 各来源现行许可、引用要求及衍生数据分发范围。 +8. 最接近方法文献和真实贡献边界;不得预设首创。 +9. 缺失的 R、复杂抽样、PyMC/ArviZ 和心理测量环境的锁定方案。 + +## 12. Gate 与停止条件 + +Gate 0 要求本章程、数据清单、文献矩阵和环境审计齐备。Gate 1 要求正式题目均有来源、编码、总体与缺失规则且主要结局完成人工双重核查。Gate 2 要求每个构念得到可进入潜变量模型/有条件/仅直接协调/不纳入的证据判定。 + +官方文本或编码无法确认、图不连通/标度不可识别、题目家族不足、设计字段不完整或参数恢复失败时按工作流降级;不得通过增加模型复杂度、替换最终测试或扩大主张掩盖失败。 + +## 13. 输入绑定 + +| 输入 | SHA-256 | +|---|---| +| `Document/research-workflow.md` | `394a191359298132fc2a56304dbc49b5934f47af22d2e0fff47d28a0d9edcaeb` | +| `Document/项目的正式定位.md` | `28a415ff5d42649df2a7c68079ae0abfd295cbffb5fead216934a895cca4cd13` | +| `Document/language-conditioned-psychometric-harmonization-model.md` | `39d2050735f4df28c6abe08f8d1de6094b7ac11d0b6f2ccf9fd66d4cc450a825` | +| `research/audit/data_manifest.csv` | `0427a19c3287a2691edbd9a4486917989fe369fcb0f729a01477ce27cd8f98f2` | +| `research/audit/data_source_registry.csv` | `ac68b9928f8855c5373034a30adda316da1da2f1a1e890b0c23f836f12d55b67` | +| `research/audit/environment_audit.md` | `c84a6b05718bbaf7762021aa45b2f983e7c9ef844d41592d2138439251e929eb` | +