{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 12. Grants" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "tags": [ "hide-input" ] }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 Grant CodeGrant NameTargetSummary
0R01Research Project GrantFaculty, StaffSupports a discrete project to improve health.
1R03Small Research GrantFaculty, StaffSmall grants for limited research projects.
2R21Exploratory/Developmental Research GrantFaculty, StaffSupports exploration of a new research concept.
3R15Academic Research Enhancement AwardFacultySupports small-scale research projects at educational institutions.
4F30Predoc to Postdoc Transition AwardGraduate Students, PostdocsSupports transition from predoctoral to postdoctoral status.
5F31Predoctoral Individual National Research Service AwardGraduate StudentsSupports promising predoctoral students.
6F32Postdoctoral Individual National Research Service AwardPostdocsSupports promising postdoctoral students.
7F33Senior FellowshipPostdocsSupports advanced postdoctoral research training.
8K01Mentored Research Scientist Development AwardEarly Career FacultyProvides 3-5 years of support for research in a new direction.
9K02Independent Scientist AwardMid-Career FacultySupports independent scientists.
10K08Mentored Clinical Scientist Research Career Development AwardEarly Career FacultySupports career development for those with clinical doctoral degree.
11K23Mentored Patient-Oriented Research Career Development AwardEarly Career FacultySupports career development in patient-oriented research.
12K99/R00Pathway to Independence AwardPostdocsProvides postdoc-to-faculty transition support.
13T32Institutional National Research Service AwardUndergrads, Grads, PostdocsTrainees appointed by institution.
14T35Short Term Institutional Research Training GrantUndergrads, Medical StudentsSupports short-term research training for students.
15DARPA-XXDefense Advanced Research Projects AgencyFaculty, Staff, CollaboratorsDARPA funds cutting-edge tech and science projects.
16SBIRSmall Business Innovation ResearchSmall Business, FacultyGrants for small business/startup research.
17STTRSmall Business Technology TransferSmall Business, FacultyFunds cooperative R&D between small businesses and nonprofits.
18NSF-XXNational Science FoundationFaculty, Staff, CollaboratorsFunding for scientific and engineering research.
19K24Midcareer Investigator Award in Patient-Oriented ResearchMid-Career FacultySupports mid-career clinicians dedicated to patient-oriented research.
20U01Cooperative Research Project GrantFaculty, Staff, CollaboratorsSupports long-term collaborative research projects.
\n" ], "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Import Pandas library\n", "import pandas as pd\n", "\n", "# Set Pandas display options\n", "pd.set_option('display.max_colwidth', None)\n", "pd.set_option('display.expand_frame_repr', False)\n", "\n", "# Original data\n", "data = {\n", " 'Grant Code': ['R01', 'R03', 'R21', 'R15', 'F30', 'F31', 'F32', 'F33', 'K01', 'K02', 'K08', 'K23', 'K99/R00', 'T32', 'T35', 'DARPA-XX', 'SBIR', 'STTR', 'NSF-XX'],\n", " 'Grant Name': [\n", " 'Research Project Grant',\n", " 'Small Research Grant',\n", " 'Exploratory/Developmental Research Grant',\n", " 'Academic Research Enhancement Award',\n", " 'Predoc to Postdoc Transition Award',\n", " 'Predoctoral Individual National Research Service Award',\n", " 'Postdoctoral Individual National Research Service Award',\n", " 'Senior Fellowship',\n", " 'Mentored Research Scientist Development Award',\n", " 'Independent Scientist Award',\n", " 'Mentored Clinical Scientist Research Career Development Award',\n", " 'Mentored Patient-Oriented Research Career Development Award',\n", " 'Pathway to Independence Award',\n", " 'Institutional National Research Service Award',\n", " 'Short Term Institutional Research Training Grant',\n", " 'Defense Advanced Research Projects Agency',\n", " 'Small Business Innovation Research',\n", " 'Small Business Technology Transfer',\n", " 'National Science Foundation'\n", " ],\n", " 'Target': [\n", " 'Faculty, Staff',\n", " 'Faculty, Staff',\n", " 'Faculty, Staff',\n", " 'Faculty',\n", " 'Graduate Students, Postdocs',\n", " 'Graduate Students',\n", " 'Postdocs',\n", " 'Postdocs',\n", " 'Early Career Faculty',\n", " 'Mid-Career Faculty',\n", " 'Early Career Faculty',\n", " 'Early Career Faculty',\n", " 'Postdocs',\n", " 'Undergrads, Grads, Postdocs',\n", " 'Undergrads, Medical Students',\n", " 'Faculty, Staff, Collaborators',\n", " 'Small Business, Faculty',\n", " 'Small Business, Faculty',\n", " 'Faculty, Staff, Collaborators'\n", " ],\n", " 'Summary': [\n", " 'Supports a discrete project to improve health.',\n", " 'Small grants for limited research projects.',\n", " 'Supports exploration of a new research concept.',\n", " 'Supports small-scale research projects at educational institutions.',\n", " 'Supports transition from predoctoral to postdoctoral status.',\n", " 'Supports promising predoctoral students.',\n", " 'Supports promising postdoctoral students.',\n", " 'Supports advanced postdoctoral research training.',\n", " 'Provides 3-5 years of support for research in a new direction.',\n", " 'Supports independent scientists.',\n", " 'Supports career development for those with clinical doctoral degree.',\n", " 'Supports career development in patient-oriented research.',\n", " 'Provides postdoc-to-faculty transition support.',\n", " 'Trainees appointed by institution.',\n", " 'Supports short-term research training for students.',\n", " 'DARPA funds cutting-edge tech and science projects.',\n", " 'Grants for small business/startup research.',\n", " 'Funds cooperative R&D between small businesses and nonprofits.',\n", " 'Funding for scientific and engineering research.'\n", " ]\n", "}\n", "\n", "# Update the data to include K24 and U01\n", "data['Grant Code'].extend(['K24', 'U01'])\n", "data['Grant Name'].extend(['Midcareer Investigator Award in Patient-Oriented Research', 'Cooperative Research Project Grant'])\n", "data['Target'].extend(['Mid-Career Faculty', 'Faculty, Staff, Collaborators'])\n", "data['Summary'].extend(['Supports mid-career clinicians dedicated to patient-oriented research.', 'Supports long-term collaborative research projects.'])\n", "\n", "# Create DataFrame\n", "df = pd.DataFrame(data)\n", "\n", "# Left-align all columns and display table\n", "df.style.set_table_styles({\n", " 'Grant Code': [{'selector': '',\n", " 'props': [('text-align', 'left')]}],\n", " 'Grant Name': [{'selector': '',\n", " 'props': [('text-align', 'left')]}],\n", " 'Target': [{'selector': '',\n", " 'props': [('text-align', 'left')]}],\n", " 'Summary': [{'selector': '',\n", " 'props': [('text-align', 'left')]}]\n", "})\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Next Steps:\n", "\n", "1. **Immediate Objectives**: \n", " - Refine content based on audience feedback\n", " - Create filters or layers to the table that allow the viewer to tailor the information to their needs.\n", "\n", "2. Long-term Objectives: \n", " - Expand this into a broader resource that includes more info \n", " - Application tips\n", " - Success stories\n", " - Exemplary funded proposals\n", "\n", "3. Resource Allocation: \n", " - Brief videos and infographics to enhance the accessibility and usability of this resource.\n", "\n", "
" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.4" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }