Untitled

 avatar
unknown
plain_text
a year ago
928 B
13
Indexable
from graphviz import Digraph

# Create a directed graph
dot = Digraph(comment="My Suggested Framework of Technology Adoption")

# Define the stages with elaboration in labels
dot.node("D", "Discovery\n(Teacher explores and learns about new tools;\nattends trainings, workshops, or demos)")
dot.node("T", "Trial\n(Teacher experiments with small tasks;\ntries tools in simple class activities)")
dot.node("I", "Integration\n(Technology becomes part of daily teaching;\nlesson plans include tech use regularly)")
dot.node("N", "Innovation\n(Teacher uses technology creatively;\nredesigns lessons for active student engagement)")
dot.node("G", "Growth\n(Teacher continuously adapts to new tools;\nupdates strategies and shares practices)")

# Connect the nodes
dot.edges(["DT", "TI", "IN", "NG"])

# Render to file
file_path = "/mnt/data/tech_adoption_framework"
dot.render(file_path, format="png", cleanup=True)

file_path + ".png"
Editor is loading...
Leave a Comment