<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Using a Hierarchical Clustering Algorithm to Explore the Relationship Between Students&apos; Program Debugging and Learning Performance</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Hung</forename><surname>Chao</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Department of Technology Application and Human Resource</orgName>
								<orgName type="institution">National Taiwan Normal University</orgName>
								<address>
									<country key="TW">Taiwan</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Ting-Chia</forename><surname>Liu</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Department of Technology Application and Human Resource</orgName>
								<orgName type="institution">National Taiwan Normal University</orgName>
								<address>
									<country key="TW">Taiwan</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><surname>Hsu</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Department of Technology Application and Human Resource</orgName>
								<orgName type="institution">National Taiwan Normal University</orgName>
								<address>
									<country key="TW">Taiwan</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Using a Hierarchical Clustering Algorithm to Explore the Relationship Between Students&apos; Program Debugging and Learning Performance</title>
					</analytic>
					<monogr>
						<idno type="ISSN">1613-0073</idno>
					</monogr>
					<idno type="MD5">B4ADCDD2695D607F77C68B9111B8627C</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2025-04-23T18:52+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>Learning Analytics</term>
					<term>Trial and Error</term>
					<term>Agglomerative Hierarchical Clustering</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>The programming course poses a significant challenge for students who are just starting to learn a programming language. Many beginners, upon encountering an "ERROR" message from the system, tend to give up on learning. However, there are also students who persist in overcoming difficulties, exerting continued effort to complete their code, and achieving better learning outcomes. Therefore, this study aimed to cluster students based on their behavior during debugging in a programming course. It sought to explore the impact and differences among students in terms of program success and course grades within different debugging frequency clusters.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.">Introduction</head><p>Computer programming courses have long been a significant challenge for students entering the field of information technology. This is because students must express their needs using computerunderstandable terms, logic, and thinking, often encountering obstacles in the process <ref type="bibr" target="#b0">(Feurzeig et al., 2011)</ref>. This challenge is considered a global issue, as both introductory and advanced programming language courses face high dropout rates, creating substantial pressure on students and teachers who may have high expectations for themselves <ref type="bibr">(Luxton,2016)</ref>. Many students give up when confronted with multiple syntax and logic errors, indicating a potential lack of problem-solving skills and perseverance <ref type="bibr">(Cheah,2020)</ref>.</p><p>In light of these challenges, this study primarily explored students' behavior records during the debugging process of coding, as errors represent obstacles and setbacks. Whether students can progress through these setbacks will be a key factor in their improvement and success. The study was designed to analyze and cluster students' debugging behavior data in programming courses using the Learning Management System. The research was expected to address three main research questions:</p><p>• RQ1. Can errors made by students in coding be differentiated into distinct clusters? • RQ2. Is there a difference in the number of successful program runs (Success_run) among students in different programming error clusters? • RQ3. Is there a difference in course learning scores (Score) among students in different programming error clusters?</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">Related work</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1.">Learning analytics for online learning</head><p>Educational Data Mining (EDM) and Educational Process Mining (EPM) are data science approaches to analyze various Learning Management Systems (LMS) <ref type="bibr">(Bogarín,Cerezo&amp; Romero,2018)</ref>. This data mining approach is an important part of learning analytics.</p><p>Particularly with the rapid expansion of Massive Open Online Courses (MOOCs), the interaction between online educational resources and learners is stored in extensive databases, creating educational big data for interpretation by educators <ref type="bibr" target="#b4">(Ruipérez et al., 2022)</ref>.</p><p>In numerous studies on learning analytics, there is often an exploration of dropout rates (failure rates) on online education platforms <ref type="bibr">(Qian,2022)</ref>. Additionally, researchers have analyzed differences in learning behaviors on a platform <ref type="bibr" target="#b6">(Tong &amp; Zhan, 2023)</ref>, ultimately aiming to predict students' learning achievements (grades) <ref type="bibr">(Li,Du &amp; Yu,2023)</ref>. These studies frequently involve classifying learners based on their learning preferences, allowing them to adapt their learning experiences according to the platform's diverse learning paths, recommendation systems, personalized learning strategies, and more.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.2.">Trial and Error in Programming Learning</head><p>The learning of programming languages involves various aspects of learning, such as problemsolving skills, computational thinking, and syntax comprehension (Nouri, Zhang, Mannila &amp; Norén, 2020). Importantly, students need to sustain high motivation and genuine engagement in coding to make progress in learning how to program <ref type="bibr" target="#b9">(Silva &amp; Silveira, 2020)</ref>. From the perspective of beginners, the difficulty lies in the inability to break down large problems into smaller ones. When hearing some specific terms (such as recursion, arrays, etc.), students may understand how they work, but struggle to translate that understanding into actual code <ref type="bibr" target="#b10">(Lister et al., 2004)</ref>. In this context, it is crucial to encourage students to engage in trial and error, as the experiences gained from mistakes help students engage in self-reflection and can even stimulate strong motivation to find satisfactory answers and iterate through the trial-and-error process <ref type="bibr" target="#b11">(Sicora , 2019)</ref>.</p><p>Since the sixteenth century, people have sought solutions to problems by encountering stimuli that lead to subsequent actions, which may involve continuous trial and error until success or, in some cases, giving up, which results in task failure <ref type="bibr" target="#b12">(Boswell , 1947)</ref>. Learning is inherently challenging, with difficulties progressing from shallow to deep. For example, students may encounter "Errors" while programming, which could contribute to exacerbating the failure rate in programming courses <ref type="bibr" target="#b13">(Porter, Guzdial, McDowell &amp; Simon, 2013</ref>) but can also serve as the driving force for problem solving <ref type="bibr" target="#b14">(Noh &amp; Lee, 2020)</ref>.</p><p>Programming education is often considered to have a high entry threshold, possibly due to insufficient problem-solving skills among students or ineffective use of learning materials <ref type="bibr" target="#b2">(Cheah, 2020)</ref>. Therefore, in programming courses, continuous trial and error by students is viewed as a positive behavioral performance. This practice signifies students' continuous attempts, whether in syntax or logical reasoning, until they produce results matching their expectations <ref type="bibr" target="#b15">(Ye et al., 2022)</ref>. Efforts in trial and error also help students enhance their self-efficacy, as they gain confidence in how to deal with errors and develop problem-solving skills (Ahn , Mao , Sung &amp; Black, 2017).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.3.">Agglomerative Hierarchical Clustering in Online Courses</head><p>Hierarchical clustering is an unsupervised algorithm that organizes data points into a tree-like structure on a two-dimensional plane. It groups data points and produces a hierarchical structure based on the differences between data points <ref type="bibr" target="#b17">(Alpaydin , 2020)</ref>. Agglomerative hierarchical clustering is a bottom-up hierarchical clustering method that visualizes the hierarchical structure and underlying data clustering structure <ref type="bibr" target="#b18">(Liu, Xu, Zeng &amp; Ren, 2021)</ref>. It is also a user-friendly and popular clustering algorithm.</p><p>The agglomerative hierarchical clustering process first assigns each object to its own cluster. It then uses distance or similarity measures (e.g. Euclidean distance for quantitative data, Manhattan distance for ordered but not necessarily quantitative data) or more complex methods (e.g. unweighted with arithmetic mean Pair group method (UPGMA) <ref type="bibr" target="#b19">(Oyelade , 2019)</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>The algorithm proceeds as follows:</head><p>Based on N samples, there are initially N clusters, each cluster containing one sample. Iteratively merges the two closest clusters based on the chosen distance or similarity measure until the number of clusters is reduced to 1 or reaches a user-specified number <ref type="bibr" target="#b20">(Cichosz , 2014)</ref>.</p><p>In each successive iteration, the algorithm merges the closest pair of clusters based on the similarity criterion of features between data points until all data are in one cluster <ref type="bibr" target="#b21">(Sasirekha &amp; Baby, 2013)</ref>.</p><p>Hierarchical clustering helps analyze educational big data, helping researchers identify different student learning styles, achievements, and behaviors, as well as assess individual engagement levels (Hung, Liu, Liang &amp; Su, 2020 ; Trivedi &amp; Patel ,2020 ; Yang, Chen, Flanagan &amp; Ogata, 2022).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">Method</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1.">Data mining methods</head><p>This research incorporates the "Learning Behavior and Learning Strategies" dataset collected by Lu et al.( <ref type="formula">2022</ref>). This dataset predominantly consists of various actions recorded on a Learning Management System (LMS) as students engaged in learning programming. It encompasses a range of data points such as the number of errors generated, instances of code copying, frequency of code execution, and academic grades. The primary focus of the dataset is to capture the learning behaviors and strategies of students while they undertake programming tasks within the LMS environment <ref type="bibr" target="#b25">(Lua et al., 2022)</ref>.</p><p>For the clustering analysis, this study focused on the "viscode.csv" dataset, specifically using the "IndentationError," "NameError," "SyntaxError," and "TypeError" fields. These four types of errors were defined as indicators of programming trial-and-error, representing the problems and difficulties students encountered while running their code. The "Viscode-success_run" and "Score" fields were used as indicators to validate the effectiveness of clustering (Table <ref type="table" target="#tab_0">1</ref>), serving as the basis for addressing Research Questions 2 and 3 in the study. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2.">Dataset</head><p>This study compared actions taken by 452 students in a programming course using an integrated development environment, as recorded by the learning management system in the viscode.csv dataset. The data, preprocessed and de-identified, includes distinct class fields (a-i), fields for interactions with the integrated development environment, debugging attempts, execution counts, success running counts, and grades. After clustering, a new PseudoID field was introduced to represent a unique identifier for each student, also serving as an index after clustering <ref type="bibr" target="#b26">(Ogata et al., 2017)</ref>. Additionally, a Cluster field was added for conducting inter-group analysis of variances and comparing the correlation between program execution success and learning grades across clusters.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.3.">Designing Clustering Model</head><p>This research employs the agglomerative hierarchical clustering method from the Python sklearn.cluster module for systematic trial-and-error clustering. To avoid the skewing of results by any single feature, normalization is performed before clustering. This is critical as it prevents any one data column from exerting undue influence on the clustering outcome and maintains the robustness of the algorithm against outliers, which could be seen as noise.</p><p>Following this preparatory step, the clustering process commences. The distance metric adopted is the "Ward" method, designed to minimize the total within-cluster variance. Essentially, at each step, Ward's method selects two clusters to merge in a way that results in the least possible increase in total variance, thus preserving high similarity within the clusters.</p><p>Moreover, to ensure a balanced distribution of clusters, silhouette scores are utilized to assess the quality of clustering across different numbers of clusters, ranging from 2 to 9. Referencing Table <ref type="table" target="#tab_1">2</ref>, the study identifies 2 as the optimal number of clusters and proceeds with further data analysis using this configuration. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.">Experiment results &amp; discussion</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1.">Can errors made by students in coding be differentiated into distinct clusters?</head><p>This study utilized the scipy.cluster.hierarchy library in Python to perform clustering analysis. Through this library, hierarchical clustering results were computed and visualized, as shown in Fig. <ref type="figure">1</ref>. The chart reveals two distinct clusters with noticeable distances between them. Cluster 0 comprises 414 student records, Cluster 1 includes 38 student records. This study further applied Principal Component Analysis (PCA) to reduce the dimensions of data consisting of student IDs and their trial-and-error behaviors. By transforming the data into a two-dimensional chart, we made it straightforward to compare these behaviors against student performance.</p><p>In this study, the Python library seaborn was utilized to create a heatmap (Fig. <ref type="figure">2</ref>), which presents the average number of trial-and-error attempts by students across different clusters. The heatmap clearly shows that students in Cluster 1 had a higher frequency of programming errors, such as IndentationError, NameError, SyntaxError, and TypeError, compared to those in Cluster 0. Notably, there are significant differences in the occurrences of NameError, SyntaxError, and TypeError between Clusters 1 and 0. Cluster 1 is characterized as the "Frequent Trial-and-Error Group," while Cluster 0 is referred to as the "Regular Trial-and-Error Group" in this study. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.2.">Is there a difference in the number of successful program runs (Success_run) among students in different programming error clusters?</head><p>To address research question 2, the study analyzed the "Success_run" field, revealing through Figure <ref type="figure" target="#fig_1">3</ref> that students in the frequent trial-and-error cluster had higher average successful program runs compared to those in the infrequent trial-and-error cluster. This pattern suggests that students who frequently encountered system errors in the integrated development environment were more persistent, leading to more successful code executions.</p><p>The study further employed an independent sample T-test, using IBM SPSS, to investigate statistical differences between the clusters in terms of successful program runs. The findings showed a statistically significant difference (t = -5.49, p &lt; .05), where the frequent trial-and-error cluster outperformed the regular trial-and-error cluster in successful program executions. This discrepancy likely arises from the frequent trial-and-error students' resilience and continuous engagement with problem-solving and coding adjustments, in contrast to students in the regular trial-and-error cluster who may have experienced reduced motivation and task completion rates after facing setbacks. Consequently, the frequent trial-and-error cluster exhibited a significantly higher number of successful program operations compared to the regular trial-and-error cluster, highlighting their effective learning and problem-solving approach.  </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.3.">Is there a difference in course learning scores (Score) among students in different programming error clusters?</head><p>To explore Research Question 3, the study performed a descriptive analysis of the "score" field across clusters differentiated by trial-and-error frequency. Figures <ref type="figure" target="#fig_2">2 and 4</ref> illustrate that clusters characterized by frequent trial-and-error tend to have higher scores than those with regular trial-anderror patterns. The box plot indicates that scores for the frequent trial-and-error group are predominantly ranged between 80 and 90 points. In contrast, the regular trial-and-error group not only exhibited wider score fluctuations (70-85 points) but also presented numerous outliers significantly below the average, with some scores approaching zero. This suggests potential dropout behaviors among certain students in the regular trial-and-error group.</p><p>The independent samples T-test statistics revealed a significant disparity in course performance between the two trial-and-error groups (t = -2.69, p &lt; .05) as shown in Table <ref type="table" target="#tab_3">4</ref>. This finding resonates with the insights from RQ1 and Figure <ref type="figure">1</ref>.</p><p>The study segmented program-based learning students by their trial-and-error occurrences, noting that a smaller contingent of students (38 in total) fell into the frequent trial-and-error group. Not with standing their group size, these students not only surpassed the regular trial-and-error group in the number of successful program runs but also outscored them. This underscores the significance of persistent trial-and-error efforts in learning; it is imperative for learners to persistently experiment and overcome challenges without capitulation to achieve success <ref type="bibr" target="#b27">(Dong et al., 2019)</ref>.  </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.">Conclusion</head><p>This study investigated the error patterns students demonstrated while debugging programs, categorizing them into two distinct groups: Cluster 0, the regular trial-and-error cluster, and Cluster 1, the frequent trial-and-error cluster. The analysis revealed that students in the frequent trial-and-error cluster not only had higher average course success rates and final scores compared to their counterparts in the regular trial-and-error cluster but also performed significantly better. These findings suggest that the debugging behaviors of different student groups can affect their learning outcomes. Educators should be cognizant of these differences and strategize appropriate responses to students' programming challenges. Moreover, when the frequency of trial-and-error attempts begins to wane, interventions such as encouragement or providing cues might be necessary to bolster students' motivation and align them with their peers <ref type="bibr" target="#b28">(Xu, Yang, Liu &amp; Jin, 2023)</ref>.</p><p>Nonetheless, it is crucial to acknowledge the limitations of the dataset and context of this study. Given that all participants were novices in programming and enrolled in the same course, the breadth of their acquired knowledge may be limited. This research advocates for the use of more varied datasets and extended observational periods. There is also considerable variation in the amount of time different students dedicate to studying programming. While some engaged with the course material for over seven hours, others may invested mere minutes. As this study lacks precise data on students' study timings, future research could employ time series analysis to discern behavioral shifts among clusters and predict how debugging frequency might influence future learning. Such an approach could yield more precise learning recommendations and enable educators to tailor their focus on the effects of trialand-error activities on academic achievement.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :Figure 2 :</head><label>12</label><figDesc>Figure 1: Hierarchical Clustering Dendrogram</figDesc><graphic coords="5,149.45,514.11,296.10,218.99" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 3 :</head><label>3</label><figDesc>Figure 3: Box plot of program trial and error with different groups of successfully running code]</figDesc><graphic coords="6,157.60,315.98,301.80,212.80" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Figure 4 :</head><label>4</label><figDesc>Figure 4: Box plot of program trial and error with different groups of course score</figDesc><graphic coords="7,139.60,341.28,329.38,211.10" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1</head><label>1</label><figDesc>Program trial and error and verification field description table</figDesc><table><row><cell>Program Error Field</cell><cell>Program Error Field</cell><cell>Validation Field Name</cell><cell>Validation Field</cell></row><row><cell>Name</cell><cell>Introduction</cell><cell></cell><cell>Introduction</cell></row><row><cell>PseudoID</cell><cell>The ID names of each</cell><cell>Cluster</cell><cell>This field describes</cell></row><row><cell></cell><cell>student have been de-</cell><cell></cell><cell>the clusters obtained</cell></row><row><cell></cell><cell>identified.</cell><cell></cell><cell>after grouping the</cell></row><row><cell></cell><cell></cell><cell></cell><cell>program trial-and-</cell></row><row><cell></cell><cell></cell><cell></cell><cell>error field.</cell></row><row><cell>IndentationError</cell><cell>This field describes</cell><cell>Viscode-success_run</cell><cell>This field describes</cell></row><row><cell></cell><cell>when syntax errors</cell><cell></cell><cell>the number of</cell></row><row><cell></cell><cell>occur related to</cell><cell></cell><cell>successful program</cell></row><row><cell></cell><cell>incorrect indentation</cell><cell></cell><cell>runs in the</cell></row><row><cell></cell><cell></cell><cell></cell><cell>integrated</cell></row><row><cell></cell><cell></cell><cell></cell><cell>development</cell></row><row><cell></cell><cell></cell><cell></cell><cell>environment.</cell></row><row><cell>NameError</cell><cell>This field describes</cell><cell>Score</cell><cell>This field describes</cell></row><row><cell></cell><cell>when local or global</cell><cell></cell><cell>the final learning</cell></row><row><cell></cell><cell>names are not found.</cell><cell></cell><cell>score for the course.</cell></row><row><cell>SyntaxError</cell><cell>This field describes</cell><cell></cell><cell></cell></row><row><cell></cell><cell>when the syntax</cell><cell></cell><cell></cell></row><row><cell></cell><cell>parser encounters a</cell><cell></cell><cell></cell></row><row><cell></cell><cell>syntax error.</cell><cell></cell><cell></cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 2</head><label>2</label><figDesc>Silhouette coefficient grouping score table</figDesc><table><row><cell>Number of clusters</cell><cell>cluster rating</cell></row><row><cell>2</cell><cell>0.58618</cell></row><row><cell>3</cell><cell>0.38826</cell></row><row><cell>4</cell><cell>0.35471</cell></row><row><cell>5</cell><cell>0.36514</cell></row><row><cell>6</cell><cell>0.25836</cell></row><row><cell>7</cell><cell>0.26924</cell></row><row><cell>8</cell><cell>0.22217</cell></row><row><cell>9</cell><cell>0.22226</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head>Table 3</head><label>3</label><figDesc>Successfully running code and trial and error clusters were subjected to Independent Samples Test.</figDesc><table><row><cell></cell><cell></cell><cell cols="2">Independent Samples Test</cell><cell></cell><cell></cell><cell></cell></row><row><cell></cell><cell></cell><cell></cell><cell>Viscodesuccess_run</cell><cell></cell><cell></cell><cell></cell></row><row><cell></cell><cell>N</cell><cell>Mean</cell><cell>SD</cell><cell>Sig.</cell><cell>t</cell><cell>d</cell></row><row><cell>frequent</cell><cell>414</cell><cell>1358.88</cell><cell>1016.89</cell><cell>.023</cell><cell>-5.49*</cell><cell>0.39</cell></row><row><cell>cluster</cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell></row><row><cell>regular cluster</cell><cell>38</cell><cell>2323.34</cell><cell>1243.08</cell><cell></cell><cell>-4.64*</cell><cell></cell></row><row><cell cols="4">*. The mean difference is significant at the 0.05 level.</cell><cell></cell><cell></cell><cell></cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_3"><head>Table 4</head><label>4</label><figDesc>Course score and trial and error clusters were subjected to Independent Samples Test.</figDesc><table><row><cell></cell><cell></cell><cell cols="2">Independent Samples Test</cell><cell></cell><cell></cell><cell></cell></row><row><cell></cell><cell></cell><cell></cell><cell>Score</cell><cell></cell><cell></cell><cell></cell></row><row><cell></cell><cell>N</cell><cell>Mean</cell><cell>SD</cell><cell>Sig.</cell><cell>t</cell><cell>d</cell></row><row><cell>frequent</cell><cell>414</cell><cell>78.80</cell><cell>17.87</cell><cell>.020</cell><cell>-2.69*</cell><cell>0.26</cell></row><row><cell>cluster</cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell></row><row><cell>regular</cell><cell>38</cell><cell>86.71</cell><cell>10.31</cell><cell></cell><cell>-4.19*</cell><cell></cell></row><row><cell>cluster</cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell><cell></cell></row></table><note>*. The mean difference is significant at the 0.05 level.</note></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Acknowledgements</head><p>This study is supported in part by the National Science and Technology Council in the Republic of China under contract numbers NSTC 112-2628-H-003-007-.</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Programming-languages as a conceptual framework for teaching mathematics</title>
		<author>
			<persName><forename type="first">W</forename><surname>Feurzeig</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">A</forename><surname>Papert</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Lawler</surname></persName>
		</author>
		<idno type="DOI">10.1080/10494820903520040</idno>
		<ptr target="https://doi.org/10.1080/10494820903520040" />
	</analytic>
	<monogr>
		<title level="j">Interactive Learning Environments</title>
		<imprint>
			<biblScope unit="volume">19</biblScope>
			<biblScope unit="issue">5</biblScope>
			<biblScope unit="page" from="487" to="501" />
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Learning to program is easy</title>
		<author>
			<persName><forename type="first">A</forename><surname>Luxton-Reilly</surname></persName>
		</author>
		<idno type="DOI">10.1145/2899415.2899432</idno>
		<ptr target="https://doi.org/10.1145/2899415.2899432" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2016 ACM Conference on Innovation and Technology in Computer Science Education</title>
				<meeting>the 2016 ACM Conference on Innovation and Technology in Computer Science Education</meeting>
		<imprint>
			<date type="published" when="2016">2016</date>
			<biblScope unit="page" from="284" to="289" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Factors contributing to the difficulties in teaching and learning of computer programming: A literature review</title>
		<author>
			<persName><forename type="first">C</forename><forename type="middle">S</forename><surname>Cheah</surname></persName>
		</author>
		<idno type="DOI">10.30935/cedtech/8247</idno>
		<ptr target="https://doi.org/10.30935/cedtech/8247" />
	</analytic>
	<monogr>
		<title level="j">Contemporary Educational Technology</title>
		<imprint>
			<biblScope unit="volume">12</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page">272</biblScope>
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">A survey on educational process mining</title>
		<author>
			<persName><forename type="first">A</forename><surname>Bogarín</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Cerezo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Romero</surname></persName>
		</author>
		<idno type="DOI">10.1002/widm.1230</idno>
		<ptr target="https://doi.org/10.1002/widm.1230" />
	</analytic>
	<monogr>
		<title level="j">Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery</title>
		<imprint>
			<biblScope unit="volume">8</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page">e1230</biblScope>
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Large scale analytics of global and regional MOOC providers: Differences in learners&apos; demographics, preferences, and perceptions</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">A</forename><surname>Ruipérez-Valiente</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Staubitz</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Jenner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Halawa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Despujol</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Rohloff</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.compedu.2021.104426</idno>
		<ptr target="https://doi.org/10.1016/j.compedu.2021.104426" />
	</analytic>
	<monogr>
		<title level="j">Computers &amp; Education</title>
		<imprint>
			<biblScope unit="volume">180</biblScope>
			<biblScope unit="page">104426</biblScope>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Research on predicting learning achievement in a flipped classroom based on MOOCs by big data analysis</title>
		<author>
			<persName><forename type="first">Y</forename><surname>Qian</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><forename type="middle">X</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><forename type="middle">G</forename><surname>Zou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><forename type="middle">B</forename><surname>Feng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">H</forename><surname>Xiao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><forename type="middle">Q</forename><surname>Ding</surname></persName>
		</author>
		<idno type="DOI">10.1002/cae.22452</idno>
		<ptr target="https://doi.org/10.1002/cae.22452" />
	</analytic>
	<monogr>
		<title level="j">Computer Applications in Engineering Education</title>
		<imprint>
			<biblScope unit="volume">30</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="222" to="234" />
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">An evaluation model based on procedural behaviors for predicting MOOC learning performance: Students&apos; online learning behavior analytics and algorithms construction</title>
		<author>
			<persName><forename type="first">Y</forename><surname>Tong</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Zhan</surname></persName>
		</author>
		<idno type="DOI">10.1108/ITSE-10-2022-0133</idno>
		<ptr target="https://doi.org/10.1108/ITSE-10-2022-0133" />
	</analytic>
	<monogr>
		<title level="j">Interactive Technology and Smart Education</title>
		<imprint>
			<date type="published" when="2023">2023</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Diversified resource access paths in MOOCs: Insights from network analysis</title>
		<author>
			<persName><forename type="first">S</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Du</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Yu</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.compedu.2023.104869</idno>
		<ptr target="https://doi.org/10.1016/j.compedu.2023.104869" />
	</analytic>
	<monogr>
		<title level="j">Computers &amp; Education</title>
		<imprint>
			<biblScope unit="volume">204</biblScope>
			<biblScope unit="page">104869</biblScope>
			<date type="published" when="2023">2023</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Development of computational thinking, digital competence and 21st century skills when learning programming in K-9</title>
		<author>
			<persName><forename type="first">J</forename><surname>Nouri</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Mannila</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Norén</surname></persName>
		</author>
		<idno type="DOI">10.1080/20004508.2019.1627844</idno>
		<ptr target="https://doi.org/10.1080/20004508.2019.1627844" />
	</analytic>
	<monogr>
		<title level="j">Education Inquiry</title>
		<imprint>
			<biblScope unit="volume">11</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="1" to="17" />
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">A systematic review on open educational games for programming learning and teaching</title>
		<author>
			<persName><forename type="first">J</forename><surname>Silva</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Silveira</surname></persName>
		</author>
		<idno type="DOI">10.3991/ijet.v15i09.12437</idno>
		<ptr target="https://doi.org/10.3991/ijet.v15i09.12437" />
	</analytic>
	<monogr>
		<title level="j">International Journal of Emerging Technologies in Learning (IJET)</title>
		<imprint>
			<biblScope unit="volume">15</biblScope>
			<biblScope unit="issue">9</biblScope>
			<biblScope unit="page" from="156" to="172" />
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">A multi-national study of reading and tracing skills in novice programmers</title>
		<author>
			<persName><forename type="first">R</forename><surname>Lister</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><forename type="middle">S</forename><surname>Adams</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Fitzgerald</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Fone</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Hamer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Lindholm</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Seppälä</surname></persName>
		</author>
		<idno type="DOI">10.1145/1041624.1041673</idno>
		<ptr target="https://doi.org/10.1145/1041624.1041673" />
	</analytic>
	<monogr>
		<title level="j">ACM SIGCSE Bulletin</title>
		<imprint>
			<biblScope unit="volume">36</biblScope>
			<biblScope unit="issue">4</biblScope>
			<biblScope unit="page" from="119" to="150" />
			<date type="published" when="2004">2004</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Reflective practice and learning from mistakes in social work student placement</title>
		<author>
			<persName><forename type="first">A</forename><surname>Sicora</surname></persName>
		</author>
		<idno type="DOI">10.1080/02615479.2018.1508567</idno>
		<ptr target="https://doi.org/10.1080/02615479.2018.1508567" />
	</analytic>
	<monogr>
		<title level="j">Social Work Education</title>
		<imprint>
			<biblScope unit="volume">38</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="63" to="74" />
			<date type="published" when="2019">2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">Trial and error learning</title>
		<author>
			<persName><forename type="first">F</forename><forename type="middle">P</forename><surname>Boswell</surname></persName>
		</author>
		<idno type="DOI">10.1037/h0058921</idno>
		<ptr target="https://doi.org/10.1037/h0058921" />
	</analytic>
	<monogr>
		<title level="j">Psychological review</title>
		<imprint>
			<biblScope unit="volume">54</biblScope>
			<biblScope unit="issue">5</biblScope>
			<biblScope unit="page">282</biblScope>
			<date type="published" when="1947">1947</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Success in introductory programming: What works?</title>
		<author>
			<persName><forename type="first">L</forename><surname>Porter</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Guzdial</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Mcdowell</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Simon</surname></persName>
		</author>
		<idno type="DOI">10.1145/2492007.2492020</idno>
		<ptr target="https://doi.org/10.1145/2492007.2492020" />
	</analytic>
	<monogr>
		<title level="j">Communications of the ACM</title>
		<imprint>
			<biblScope unit="volume">56</biblScope>
			<biblScope unit="issue">8</biblScope>
			<biblScope unit="page" from="34" to="36" />
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">Effects of robotics programming on the computational thinking and creativity of elementary school students</title>
		<author>
			<persName><forename type="first">J</forename><surname>Noh</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Lee</surname></persName>
		</author>
		<idno type="DOI">10.1007/s11423-019-09708-w</idno>
		<ptr target="https://doi.org/10.1007/s11423-019-09708-w" />
	</analytic>
	<monogr>
		<title level="j">Educational technology research and development</title>
		<imprint>
			<biblScope unit="volume">68</biblScope>
			<biblScope unit="page" from="463" to="484" />
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">Analysis of Differences in Self-Regulated Learning Behavior Patterns of Online Learners</title>
		<author>
			<persName><forename type="first">Z</forename><surname>Ye</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Jiang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Li</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Wang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Chen</surname></persName>
		</author>
		<idno type="DOI">10.3390/electronics11234013</idno>
		<ptr target="https://doi.org/10.3390/electronics11234013" />
	</analytic>
	<monogr>
		<title level="j">Electronics</title>
		<imprint>
			<biblScope unit="volume">11</biblScope>
			<biblScope unit="issue">23</biblScope>
			<biblScope unit="page">4013</biblScope>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">Supporting debugging skills: Using embodied instructions in children&apos;s programming education</title>
		<author>
			<persName><forename type="first">J.-H</forename><surname>Ahn</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Mao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Sung</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">B</forename><surname>Black</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Society for Information Technology &amp; teacher education international conference</title>
				<imprint>
			<date type="published" when="2017">2017</date>
			<biblScope unit="page" from="19" to="26" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<monogr>
		<title level="m" type="main">Introduction to machine learning</title>
		<author>
			<persName><forename type="first">E</forename><surname>Alpaydin</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2020">2020</date>
			<publisher>MIT press</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b18">
	<analytic>
		<title level="a" type="main">An agglomerative hierarchical clustering algorithm for linear ordinal rankings</title>
		<author>
			<persName><forename type="first">N</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Xu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X.-J</forename><surname>Zeng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Ren</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.ins.2020.12.056</idno>
		<ptr target="https://doi.org/10.1016/j.ins.2020.12.056" />
	</analytic>
	<monogr>
		<title level="j">Information Sciences</title>
		<imprint>
			<biblScope unit="volume">557</biblScope>
			<biblScope unit="page" from="170" to="193" />
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b19">
	<analytic>
		<title level="a" type="main">Data clustering: Algorithms and its applications</title>
		<author>
			<persName><forename type="first">J</forename><surname>Oyelade</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Isewon</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Oladipupo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Emebo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><surname>Omogbadegun</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Aromolaran</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Olawole</surname></persName>
		</author>
		<idno type="DOI">10.1109/ICCSA.2019.000-1</idno>
	</analytic>
	<monogr>
		<title level="m">the 2019 19th International Conference on Computational Science and Its Applications (ICCSA)</title>
				<imprint>
			<date type="published" when="2019">2019</date>
			<biblScope unit="page" from="71" to="81" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b20">
	<monogr>
		<title level="m" type="main">Data mining algorithms: explained using R</title>
		<author>
			<persName><forename type="first">P</forename><surname>Cichosz</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2014">2014</date>
			<publisher>John Wiley &amp; Sons</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b21">
	<analytic>
		<title level="a" type="main">Agglomerative hierarchical clustering algorithm-a</title>
		<author>
			<persName><forename type="first">K</forename><surname>Sasirekha</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Baby</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">International Journal of Scientific and Research Publications</title>
		<imprint>
			<biblScope unit="volume">83</biblScope>
			<biblScope unit="issue">3</biblScope>
			<biblScope unit="page">83</biblScope>
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b22">
	<analytic>
		<title level="a" type="main">Applying educational data mining to explore students&apos; learning patterns in the flipped learning approach for coding education</title>
		<author>
			<persName><forename type="first">H.-C</forename><surname>Hung</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I.-F</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C.-T</forename><surname>Liang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y.-S</forename><surname>Su</surname></persName>
		</author>
		<idno type="DOI">10.3390/sym12020213</idno>
		<ptr target="https://doi.org/10.3390/sym12020213" />
	</analytic>
	<monogr>
		<title level="j">Symmetry</title>
		<imprint>
			<biblScope unit="volume">12</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page">213</biblScope>
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b23">
	<analytic>
		<title level="a" type="main">Clustering Students Based on Virtual Learning Engagement, Digital Skills, and E-learning Infrastructure: Applications of K-means, DBSCAN, Hierarchical, and Affinity Propagation Clustering</title>
		<author>
			<persName><forename type="first">S</forename><surname>Trivedi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Patel</surname></persName>
		</author>
		<ptr target="https://journals.sagescience.org/index.php/ssret/article/view/6" />
	</analytic>
	<monogr>
		<title level="j">Sage Science Review of Educational Technology</title>
		<imprint>
			<biblScope unit="volume">3</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="1" to="13" />
			<date type="published" when="2020">2020</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b24">
	<analytic>
		<title level="a" type="main">How students&apos; self-assessment behavior affects their online learning performance</title>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">C</forename><surname>Yang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><forename type="middle">Y</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Flanagan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Ogata</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.caeai.2022.100058</idno>
		<ptr target="https://doi.org/10.1016/j.caeai.2022.100058" />
	</analytic>
	<monogr>
		<title level="j">Computers and Education: Artificial Intelligence</title>
		<imprint>
			<biblScope unit="volume">3</biblScope>
			<biblScope unit="page">100058</biblScope>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b25">
	<analytic>
		<title level="a" type="main">Quality Data Set for Data Challenge: Featuring 160 Students&apos; Learning Behaviors and Learning Strategies in a Programming Course</title>
		<author>
			<persName><forename type="first">O</forename><forename type="middle">H</forename><surname>Lua</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">Y</forename><surname>Huang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Flanaganc</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Ogata</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">J A</forename><surname>Yang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 30th International Conference on Computers in Education</title>
				<meeting>the 30th International Conference on Computers in Education<address><addrLine>Kuala Lumpur City,Malaysia</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b26">
	<analytic>
		<title level="a" type="main">Learning analytics for e-book-based educational big data in higher education</title>
		<author>
			<persName><forename type="first">H</forename><surname>Ogata</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Oi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Mohri</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Okubo</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Shimada</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Yamada</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Hirokawa</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-319-55345-0_13</idno>
		<ptr target="https://doi.org/10.1007/978-3-319-55345-0_13" />
	</analytic>
	<monogr>
		<title level="m">Smart sensors at the IoT frontier</title>
				<imprint>
			<date type="published" when="2017">2017</date>
			<biblScope unit="page" from="327" to="350" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b27">
	<analytic>
		<title level="a" type="main">Defining tinkering behavior in open-ended block-based programming assignments</title>
		<author>
			<persName><forename type="first">Y</forename><surname>Dong</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Marwan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Catete</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Price</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Barnes</surname></persName>
		</author>
		<idno type="DOI">10.1145/3287324.3287437</idno>
		<ptr target="https://doi.org/10.1145/3287324.3287437" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 50th ACM Technical Symposium on Computer Science Education</title>
				<meeting>the 50th ACM Technical Symposium on Computer Science Education</meeting>
		<imprint>
			<date type="published" when="2019">2019</date>
			<biblScope unit="page" from="1204" to="1210" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b28">
	<analytic>
		<title level="a" type="main">Examining the effects of different forms of teacher feedback intervention for learners&apos; cognitive and emotional interaction in online collaborative discussion: A visualization method for process mining based on text automatic analysis</title>
		<author>
			<persName><forename type="first">W</forename><surname>Xu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><forename type="middle">Y</forename><surname>Yang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">N</forename><surname>Jin</surname></persName>
		</author>
		<idno type="DOI">10.1080/10494820903520040</idno>
		<ptr target="https://doi.org/10.1080/10494820903520040" />
	</analytic>
	<monogr>
		<title level="j">Education and Information Technologies</title>
		<imprint>
			<biblScope unit="page" from="1" to="27" />
			<date type="published" when="2023">2023</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
