Skip to main content

Hybrid Hiccups vs. F2F Courses

This year has been a study in contrasts. I chose to teach a traditional technical writing course in the fall and a hybrid course during the spring semester. The differences in student projects, the quality of their analyses, and general attitudes is remarkable.

I know research found no easily quantified differences in learning outcomes. However, I think anyone could compare the group projects between these courses and see a difference in the products. While the lessons learned and the facts students retain might be similar, the results do demonstrate something.

Some elements of are "intangible" because they are social and philosophical. For example, groups struggled online, even with guidance and gentle remainders to establish schedules and routines. In the traditional course, groups developed stronger bonds and worked together frequently. It should be noted that the face-to-face (F2F) students exchanged more e-mail and chatted more often than the students on the officially hybrid course.

Students in the traditional course met in a computer lab once a week. This allowed them time to help each other with desktop publishing issues. Both courses included design students, but in the F2F course these students were leaders. In the online course, leaders failed to emerge. (I try not to influence how groups function, but maybe I should be more proactive online.)

The hybrid students did the bare minimum on assignments. They counted words, literally, and seemed driven by convenience instead of a desire to learn something new. Online was, as several admitted, perceived as "less work" because there were fewer in-person meetings.

I had not registered D or F marks for nearly three years. Unfortunately, the hybrid course had a high number of incomplete and missing assignments. Ten percent of the students will not receive credit for the course. I am told that the failure / drop rate approaches 30 percent online.

The best students in both classes were definitely equal. For some students, the online space was not problematic. The problem is that the average grade was approximately six percent lower. Sure, a 81 versus an 87 seems minor, but it is significant to me.

I like online content. As a teacher, I was able to post my lectures as audio, include supplemental videos, and I could return papers easily with comments. Students could easily check the calendar, announcements, and obtain handouts. Unfortunately, even with those materials available, less than half of the students downloaded all the materials I offered.

Students have to be self-motivated for online learning to function. I am disappointed, but I realize I did all that I could. I sent students e-mails to remind them of due dates. I asked questions when they seemed to struggle. I posted leading questions, imagining they would realize I was hinting they needed to communicate better within groups.

Maybe it is because so many parents, working students, and students with misconceptions about online learning were in the hybrid that it had a slightly shifted grade curve. The convenience was essential to some of these students, but that meant they were balancing a lot in their lives. If students who could not otherwise take the course were able to complete a requirement, I suppose that is a good thing.

Though I like the hybrid model, with both online and traditional meetings, it is clear that I need to consider that the students attracted to such a course might have different needs and expectations. A course with group projects is not like a computer programming, math, or statistics course. One of my students said his online econ course was great because he worked ahead. Group work online, in his view, was annoyingly complex.

I kept student comments, with their permission, and hope to write about this in a more formal way. Who takes a course affects the dynamics more than I anticipated. It might not be the format caused the reduced grades, but the student population attracted to the format.

It would be nice to discuss this with other teachers of hybrid courses.

The change I would make is to have more F2F meetings before switching to an online course. I think the students needed a greater sense of community that requires more time to develop online than in person. I would have six consecutive traditional courses, at a minimum, if group work is to remain a component of the class.

I admit, the social aspects are not "officially" part of a class on writing, but they are important to the future success of graduates.

Comments

Popular posts from this blog

MarsEdit and Blogging

MarsEdit (Photo credit: Wikipedia ) Mailing posts to blogs, a practice I adopted in 2005, allows a blogger like me to store copies of draft posts within email. If Blogger , WordPress, or the blogging platform of the moment crashes or for some other reason eats my posts, at least I have the original drafts of most entries. I find having such a nicely organized archive convenient — much easier than remembering to archive posts from Blogger or WordPress to my computer. With this post, I am testing MarsEdit from Red Sweater Software based on recent reviews, including an overview on 9to5Mac . Composing posts an email offers a fast way to prepare draft blogs, but the email does not always work well if you want to include basic formatting, images, and links to online resources. Submitting to Blogger via Apple Mail often produced complex HTML with unnecessary font and paragraph formatting styles. Problems with rich text led me to convert blog entries to plaintext in Apple Mail

Learning to Program

Late last night I installed the update to Apple's OS X programming tool suite, Xcode 4. This summer, in my "free" time I intend to work my way through my old copy of Teach Yourself C and the several Objective-C books I own. While I do play with various languages and tools, from AppleScript to PHP, I've never managed to master Objective-C — which is something I want to do. As I've written several times, knowing simple coding techniques is a practical skill and one that helps learn problem solving strategies. Even my use of AppleScript and Visual Basic for Applications (VBA) on a regular basis helps remind me to tackle problems in distinct steps, with clear objectives from step to step. There are many free programming tools that students should be encouraged to try. On OS X, the first two tools I suggest to non-technical students are Automator and AppleScript. These tools allow you to automate tasks on OS X, similar to the batch files of DOS or the macros of Wor

Learning to Code: Comments Count

I like comments in computer programming source code. I've never been the programmer to claim, "My code doesn't need comments." Maybe it is because I've always worked on so many projects that I need comments  to remind me what I was thinking when I entered the source code into the text editor. Most programmers end up in a similar situation. They look at a function and wonder, "Why did I do it this way?" Tangent : I also like comments in my "human" writing projects. One of the sad consequences of moving to digital media is that we might lose all the little marginalia authors and editors leave on manuscript drafts. That thought, the desire to preserve my notes, is worthy of its own blog post — so watch for a post on writing software and notes. Here are my rules for comments: Source code files should begin with identifying comments and an update log. Functions, subroutines, and blocks of code should have at least one descriptive comment.