Skip to main content
Powered by ShareScore

Find research datasets worth reusing

Search datasets from major research repositories and use ShareScore to quickly assess how well each record supports discovery, access, and reuse.

16

datasets available to search

ShareScore release 0.9.0

Reset

Dataset results

16 results for “medical coding”

Learn how ShareScore rates datasets ↗
zenodo40/100

Figure 3 in Implementation of the QR Code system in the Medical Malacology Collection of the René Rachou Institute, Oswaldo Cruz Foundation

Figure 3. Use of the QR Code in Fiocruz-CMM. Carrying a cell phone with a camera and internet access, the user photographs the QR Code and has access to a spreadsheet with all the data related to the specimen of interest.

opencc-by-4.0Sep 2023View details →
zenodo40/100

Medication and condition codes used to develop a computable phenotype for Crohn's Disease incident cases

<p>Lists of medication and condition concepts used for Crohn&#39;s disease incident case phenotyping as described in my Master&#39;s Thesis &quot;Machine Learning Based Prediction of Incident Cases of Crohn&rsquo;s Disease Using Electronic Health Records From a Large Integrated Health System&quot;.</p> <ul> <li>ibd_medication.csv contains medication names, OMOP Concept IDs, RxNorm codes and a flag indicating whether the medication is IBD-specific (i.e., antibiotics and glucocorticoides are marked as unspecific)</li> <li>ibd_conditions.csv contains condition names, OMOP Concept IDs, SNOMED CT codes and a categorical column indicating whether the condition refers to Crohn&#39;s Disease (CD), Ulcerative Colitis (UC), or Inflammatory bowel disease unclassified (IBD-U)</li> <li>ibd_symptoms.csv contains symptom names, OMOP Concept IDs, containing symptom group categories, and a flag indicating whether the symptom was added because it is a SNOMED CT descendent code of another code on the list. The list was created based on the IBD symptoms Read Code list provided by Blackwell et. al, 2021, doi:10.1093/ecco-jcc/jjaa146</li> </ul> <p>IBD, Inflammatory Bowel Disease; OMOP, Observational Medical Outcomes Partnership; SNOMED CT, Systematized Nomenclature of Medicine Clinial Terms.</p>

opencc-by-4.0Mar 2023View details →
zenodo32/100

Additional File 1 and Notebook Code for "Machine learning approaches for hospital acquired pressure injuries: a retrospective study of electronic medical records"

<p>Supplementary materials (Pressure_Injuries_Additional_File_1_final_double_blind.pdf) and Jupyter Notebook code (HAPI_Prediction_Script.pdf) developed as supplement for study &quot;Machine learning approaches for hospital acquired pressure injuries: a retrospective study of electronic medical records&quot;.</p>

opencc-by-4.0Oct 2021View details →
ClinicalTrials.gov32/100

Checklist-guided Shared Decision-making for Code Status Discussions in Medical Inpatients.

ClinicalTrials.gov study NCT03872154. IPD Sharing: Not stated. Countries: 1. Publications: 2.

restrictedIPD-UNDECIDEDFeb 2026View details →
ClinicalTrials.gov32/100

Integral Management of Healthcare Problems Related With Drugs in Polimedicated Patients: Medication Code

ClinicalTrials.gov study NCT03607097. IPD Sharing: Not stated. Countries: 1. Publications: 10.

restrictedIPD-UNDECIDEDFeb 2026View details →
zenodo28/100

Figure 4 in Implementation of the QR Code system in the Medical Malacology Collection of the René Rachou Institute, Oswaldo Cruz Foundation

Figure 4. Spreadsheet with data retrieved by reading the QR Code for a specimen with the data available in the digital Inventory Book of the Medical Malacology Collection.

opencc-by-4.0Sep 2023View details →
zenodo28/100

Figure 2 in Implementation of the QR Code system in the Medical Malacology Collection of the René Rachou Institute, Oswaldo Cruz Foundation

Figure 2. QR code used in Fiocruz-CMM. Flask containing specimen 17003, labeled with the QR code that redirects the user to data related to this specimen (A). QR Code that redirects to data related to sample 17003 (B).

opencc-by-4.0Sep 2023View details →
zenodo28/100

Figure 1 in Implementation of the QR Code system in the Medical Malacology Collection of the René Rachou Institute, Oswaldo Cruz Foundation

Figure 1. Schematic representation of the system developed for reading the inventory book of the Medical Malacology Collection and compiling the specimen data for individual QR Codes affixed to the recipients containing the specimens.

opencc-by-4.0Sep 2023View details →
zenodo28/100

Dataset for MedCodER: A Generative AI Assistant for Medical Coding

Open the record for dataset details and reuse information.

opencc-by-nc-nd-4.0Aug 2024View details →
ClinicalTrials.gov28/100

Study to Validate Coded Medical Terms Used to Identify Opioid-Related Overdose in Databases Used for PMR Study 1B

ClinicalTrials.gov study NCT02667197. IPD Sharing: Not stated. Countries: 0. Publications: 3.

restrictedIPD-UNDECIDEDFeb 2026View details →
ClinicalTrials.gov24/100

Physicians in Training and Critical Care Nurses Performance in Medical Code Events: Effect of Simulation-Based Training

ClinicalTrials.gov study NCT02707185. IPD Sharing: Not stated. Countries: 1. Publications: 0.

restrictedIPD-UNDECIDEDFeb 2026View details →
ClinicalTrials.gov20/100

Detection Medication Administration Errors Using Bar-code and RFID Technology (DREAM)

ClinicalTrials.gov study NCT02325336. IPD Sharing: Not stated. Countries: 0. Publications: 0.

restrictedIPD-UNDECIDEDFeb 2026View details →
ClinicalTrials.gov20/100

Determinants of Time Required by Medical Information Technicians for Quality Control of Hospital Activity Coding

ClinicalTrials.gov study NCT03977636. IPD Sharing: Not stated. Countries: 0. Publications: 0.

restrictedIPD-UNDECIDEDFeb 2026View details →
zenodo16/100

Sentiment analysis in medication adherence: full code

<p>This database, associated with the research article on sentiment analysis in medication adherence, comprises an extensive collection of files essential for understanding and replicating the study's findings. It includes 362,806 anonymized medication reviews, meticulously analyzed to explore the correlation between patient sentiments and medication adherence.</p> <p><strong>Organize folders and code:</strong></p> <pre><code>MedicationAdherenceSentimentAnalysis/ │ ├── 01 - Original dataset/ │ └── originalDataset.csv │ ├── 02 - Dataset cleaning/ │ ├── CleaningStep1.py │ ├── CleaningStep2.py │ ├── CleaningStep3.py │ ├── CleaningStep4.py │ ├── Balancing.py │ ├── CleanedDatasetStep1.csv │ ├── CleanedDatasetStep2.csv │ ├── CleanedDatasetStep3.csv │ └── CleanedDatasetStep4.csv │ └── FinalBalancedDataset.csv │ ├── 03 - Vader analysis/ │ ├── vaderAnalysis.py │ └── vaderResults.csv │ ├── 04 - DistilRoBERTa analysis/ │ ├── DistilRoBERTa_Analysis.py │ └── DistilRoBERTa_Results.csv │ ├── 05 - Dataset report/ │ ├── datasetReport.py │ ├── filtredNegativeMeds.py │ ├── filtredPositiveMeds.py │ └── Outputs printed in terminal (Note: Terminal outputs are not stored as files) │ ├── 06 - Charts/ │ ├── charts.py │ ├── sentimentByLikert.html │ ├── vaderVsDistilRoBERTa.html │ ├── emotionsByLevelOfEffectiveness.html │ ├── emotionsByLevelOfEaseofuse.html │ └── emotionsByLevelOfSatisfaction.html │ └── 07 - Model metrics/ ├── modelMetrics.py └── dataserForMetrics.csv </code></pre> <p>&nbsp;</p> <p><strong>Contents:</strong></p> <ol> <li>Anonymized Medication Reviews: The original dataset must be downloaded from the original source indicated in "ReadmeDataset.docx". This is comprehensive dataset of 362,806 medication reviews, anonymized to protect patient privacy. These reviews serve as the primary data source for the sentiment analysis conducted in the study.</li> <li>Sentiment Analysis Results: Detailed files containing the output of the sentiment analysis performed using VADER and DistilRoBERTa models. This includes sentiment polarities, emotional responses, and their correlation with the perceived effectiveness, ease of use, and satisfaction reported by patients.</li> <li>Statistical Analysis Files: Contains the statistical tests and analysis results that establish the significant correlations between sentiment polarities and patient perceptions, as discussed in the article.</li> <li>Methodology Documentation: Detailed documentation of the methodologies used, including the application of AI tools like VADER and DistilRoBERTa for sentiment analysis. This section aids in replicating the study's approach for further research.</li> <li>Supplementary Information: Additional files that support the article's content, possibly including code snippets used for analysis, raw data processing details, and any other supplementary materials that contribute to the transparency and reproducibility of the research.</li> </ol> <p><strong>Usage:</strong></p> <p>This database is intended for researchers, clinicians, and academicians interested in exploring the intersection of artificial intelligence, sentiment analysis, and clinical pharmacy. It provides a rich resource for understanding patient sentiments towards medications and their potential impact on adherence. Researchers can utilize this data to replicate the study, conduct further analyses, or explore new hypotheses in the realm of health informatics and patient care optimization.</p>

restrictedcc-by-4.0Apr 2024View details →
zenodo16/100

Data associated with "Exploring Prescribing Trends: An R Shiny App for Visualizing the Top 100 Most Commonly Prescribed Medications and Their Distribution by ATC Code"

Open the record for dataset details and reuse information.

restrictedcc-by-4.0Jul 2024View details →
zenodo12/100

An R Shiny App for Visualizing the Top 100 Most Commonly Prescribed Medications and Their Distribution by ATC Code"

Open the record for dataset details and reuse information.

restrictedcc-by-4.0Jul 2024View details →

ScienceDex guides

Understand access before you commit

These curated guides explain access requirements, typical timelines, costs, and reuse considerations for widely used research datasets.

Compare curated datasets

Allen Brain Atlas

Allen Brain Atlas is an Allen Institute collection of brain map atlases, datasets, APIs, and analysis tools covering mouse, human, and non-human primate brain resources.

allen-brain-atlas
neuroscienceopenDocumentation, web resources, and API references are available online.
Last verified 2026-04-30Open record

Annotated Behaviour and Observability Dataset (ABODe)

ABODe is a University of Edinburgh DataShare dataset for behavior classification in group-housed mice using home-cage video, identities, bounding boxes, ground-plate positions, and annotator labels.

abode-home-cage
behavioral-neuroscienceopenThe DataShare record exposes download links for annotations, documentation, license text, and the zipped per-snippet data directory.
Last verified 2026-04-30Open record

DANDI Archive for NWB datasets

DANDI is a BRAIN Initiative archive for publishing and sharing neurophysiology data, including electrophysiology, optophysiology, and behavioral data packaged as NWB and related standards.

dandi-nwb
electrophysiologyopenPublished Dandiset metadata and archive endpoints are available through the production DANDI API.
Last verified 2026-04-30Open record

International Brain Laboratory public data

The International Brain Laboratory public data releases expose standardized mouse decision-making experiments, including Neuropixels recordings, widefield calcium imaging, behavior, and session metadata accessed through the ONE API.

ibl
behavioral-neuroscienceopenPublic sessions can be searched and loaded from the IBL public data server through ONE.
Last verified 2026-04-29Open record

OpenNeuro

OpenNeuro is a free, open platform for sharing neuroimaging datasets, with public search, dataset pages, and download paths for web, S3, DataLad, and the OpenNeuro CLI.

openneuro
neuroscienceopenPublished datasets are available on demand over the internet.
Last verified 2026-04-29Open record