This repository has been archived on 2025-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
visible-learning/config_visible_learning.py
Jochen Hanisch-Johannsen aab5c683b9 Netzwerkanalyse erweitert:
- 3D-Visualisierung mit Effekt-Achse (z-Modi: Effekt, System, Semantik)
- Top-Listen (je 15 positive/negative Effektstärken) ergänzt
- Item-Projektion mit Community-Labels
- Config um Toggle für z-Modi mit sprechenden Achsentiteln erweitert
- Keys konsistent (top_n_extremes, show_item_projection)
2025-09-03 23:53:41 +02:00

44 lines
1.5 KiB
Python

# config_visible-learning.py
# Pfad zur Eingabedatei
csv_file = "Thermometer.csv"
# Anzahl der Cluster für K-Means
k_clusters = 4
# Exportoptionen
export_fig_visual = False # HTML-Export
export_fig_png = False # PNG-Export
# Plot-Theme (dark / light)
theme = "dark"
# Kapitelsteuerung
selected_kapitel = None # Nummer des Kapitels (z.B. 5), None = kein Filter
analyse_all = False # True = alle Kapitel durchlaufen
export_werte_all = True # Wertedatei (werte_all.json) exportieren
# 3D-Visualisierung: Toggle für die drei z-Modi mit sprechenden Achsentiteln
z_mode = "effekt" # Mögliche Werte: "effekt", "kapitel", "system"
z_axis_labels = {
"effekt": "Effektstärke (Cohen d)",
"kapitel": "Kapitelnummer",
"system": "Systemebene (psychisch/sozial)"
}
# ———————————————————————————————————————————————
# Zusatz-Ausgaben & Netzwerkanalyse-Optionen
# ———————————————————————————————————————————————
# 1) Top-Listen der Effektstärken
export_top_extremes = True
top_n_extremes = 15
# 2) Item-Projektion im Netzwerk + Community-Labels
show_item_projection = True # statt enable_item_projection
projection_method = "layout_spring" # "layout_spring" | "umap"
show_community_labels = True
community_algorithm = "louvain" # "louvain" | "leiden" (falls unterstützt)
min_community_size = 3
# 3) z-Achsen-Toggle kommt aus z_mode / z_axis_labels (oben)