Suboccipital nerve
AKA Posterior ramus of C11
Pathway
Innervation
Somatosensory innervation
Motor Innervation
#| label: tbl-suboccipital-nerve-oian #| warning: false #| message: false #| echo: false #| tbl-cap: “Suboccipital nerve Muscle Innervations”
from pathlib import Path import pandas as pd from pyprojroot import here from IPython.display import display, HTML
Set the path for the script file
script_file_path = here(“scripts/process_oian_table.py”)
Check if the script file exists
if script_file_path.exists(): import sys sys.path.append(str(script_file_path.parent)) # Add the directory of the script to the system path
from process_oian_table import process_oian_table # Import the specific function
# Define the column to filter by and the identifiers to include
filter_column = 'innervation_identifier' # Choose the column you want to filter by
filter_identifiers = ['suboccipital_nerve'] # Replace with actual identifiers you want to include
# Call the function to get the HTML table with filtering
html_table = process_oian_table(filter_column=filter_column, filter_identifiers=filter_identifiers)
if html_table:
# Render the HTML table for display
display(HTML(html_table)) # Use display to render the HTML properly
else: print(“Script file does not exist. Please check the path.”)
```
References
1.
Gilroy AM, MacPherson BR, Wikenheiser JC, Voll MM, Wesker K, Schünke M, eds. Atlas of Anatomy. 4th ed. Thieme; 2020.
Citation
For attribution, please cite this work as:
Yomogida N, Kerstein C. Suboccipital nerve. https://yomokerst.com/The
Archive/Anatomy/Nerves/suboccipital_nerve.html