One Day At A Time
  • One Day at a Time
  • Portfolio
  • Graduate Work Portfolio
  • TechReadyPD

Data-Driven Interventions in the Music classroom Part 2: Designing my Data Workflow

7/19/2018

26 Comments

 
This is part 2 of a series of posts I'm writing on my past school year using various edtech tools for data-driven interventions.
Picture
This past school year I took a classroom routine and translated it (I'm currently reading Sonny Magana's T3 book 😉) by integrating Flipgrid and OneNote into the process. This allowed for an increased frequency of student performance submissions, along with the resulting assessment scores from class peers and myself. I was pulling in lots of data. Rubric scores from students and myself, and plenty of feedback comments. The goal was to effectively use this data to help drive instruction and interventions with my students. Based on my previous experience messing around with and sharing student data, I had ideas for what I wanted going into this project:
  • I wanted my students to have access to this data
  • I wanted the data to reflect their progress/growth over time
  • I wanted my students to be have the ability to compare their progress with their instrument section peers and their grade level peers
  • I wanted to tie in other data sets I already had access to, was currently collecting, or was planning to collect in the future
  • I wanted to be able to use the data as a catalyst for future intervention activities with my students
While I was brainstorming how I would get all the pieces in place to make this work, I had ideas regarding my data organization and management setup:
  • I wanted to minimize the amount of data files I was collecting and querying.
  • I wanted my data model setup to be as much hands off as possible. In other words, I wanted my setup to include as much automation as possible, reducing the need for me to manually refresh queries myself.
  • I wanted to design my own data presentation. I was creating a digital artifact that would be shared back to my students, so I wanted control over how it would look.
  • Students would need simple access to the finished product
Picture
Students were able to select their alias name to filter through the data and see their own stats
For this project I used my go-to data tools I've been messing around with for a few years, Excel and Power Bi. Both are a part of the Office 365 suite, and can connect and talk to each other through OneDrive making the this whole process a lot easier. Excel files are where all my data sets would live, saved into a folder in my OneDrive. Power Bi was used for two different reasons. Data organization and presentation. It brings all the different sets of data together, organizes them, connects them to each other, and allows  me to write my own algorithms to get the numbers I'm looking for. At the same time, it provides the canvas and tools for me to design a data visual report that can be shared back to my students. Creating the workflow I wanted required some technology knowledge (TK!) on the different ways the software programs could communicate with each other. I worked my way backward, starting with Power Bi.
Picture
Hiding sensitive information
There are two methods for organizing and creating a Power Bi report. Through the web browser or through the desktop application. Well, last August when I was planning all this I ran into an issue. In order for students to have access to the resulting Power Bi report, the report would have to be shared publicly on the web. That just screams FERPA violation, so I needed a way to anonymize the data and hide any student identifiable information. At the time I was beginning to experiment with the desktop application because it has more bells and whistles for organization and design, and I found my solution from within the program. It was actually pretty simple. Just right click on the specific column of data and select "Hide". That hides any information in that specific column from being seen when people select the "See Records" function in a Power Bi report. I couldn't do that in the web browser version, so now I was going to use the desktop app regardless.
Since I was now using the desktop Power Bi application, and I planned on connecting to Excel files (where the performance assessment data was going to be stored), the Excel files had to be local on my computer. I needed a way to get the data localized, but at the same time I wanted to minimize as much querying as possible. I wanted some automatic data syncing to happen in the background. I figured out how to get that done by using Office Forms. Like any other Form tool, the data submitted through the Form could be exported and associated with an Excel spreadsheet file. However, last summer I found out that after I saved a Form's corresponding Excel file locally to my computer, the connection between the Form and Excel file was severed. New Form responses would not propagate to the Excel file. I found a solution to this, and you can read about it here. By creating a Form from within OneDrive (instead of the Forms tile in the Office 365 waffle), I would get an Office Form/Excel file combo that would continuously sync responses to a localized file on my computer. Now I have one less query for me to do myself 🙂
Picture
I created one Office Form for each set of assessment data set per class (Band or Orchestra). One for me to use, and one for my students to use. I did this so I could later do some comparisons between the two data sets in Power Bi. I screen clipped pics of the peer assessment rubric I had previously created, and dumped them into my Office Form. Each rubric category (Pitch, Rhythm, Articulations/Bowings, Tone, Posture) was a multiple choice question in my Form. The choices were 1, 1.5, 2, 2.5, etc. all the way to 5. I also had a comments question too, but because of the way the data would be shared with my students, the comments couldn't include any identifiable information. I had a talk with my students about not inputting any identifiable information such as name, gender, grade, and even a mention of the performer's  instrument. It worked, and if a student did accidently type in some identifiable information, they let me know and I was able to delete the string of text from the data set (in the Excel workbook).
I needed a way to get Power Bi to see relationships between my two assessment data sets, so I had to make sure the resulting data tables had columns with the same values. One of the questions I included was "Who are you assessing". This was a multiple choice question with 50 answers, one for every student. When I created this list of student-name answers, I had to make sure each string of text matched the same string of text in the Office 365 directory (when a student fills out the assessment form, the Form captures their name through login credentials and inputs it into the Forms spreadsheet). Apparently at my school hyphenated last names are a growing trend (please stop!), and that can interfere with text string relationships if they don't match. So, if my student's name is "Johnny Bravo-Charlie" in the Office 365 directory, then in my "Who are you assessing" question the Johnny option has to match that same text string. I found this out the hard way 🙃
Another question on my Forms was "which video performance are you assessing?" Another multiple choice question, its choices were the exercises the students were performing and recording into Flipgrid. Every time a new performance assessment was assigned to my students, I would just go back to the Form editor and edited the question to include the new assessment option. I wanted the data from these different performance assessments to appear linearly in a data visual, so in front of the title of the assessment exercise I put a number. "1" for the first assessment, "2" for the next one, and so on. This way Power Bi would easily recognize the order I want the assessments to be in. Every once in a while a student would choose the wrong exercise title in their peer assessment submission, but I was able to find the entry in the Excel file and edit the response to include the correct value.
Picture
Using this setup I had two sets of data per class that would automatically sync into Excel files saved in my OneDrive. I connected/queried these data tables into my Power Bi desktop file, and started creating my visuals as the data began to flow in. When I was happy with it, I published the report to my Office 365 workspace to make it official. To share it with students, I needed to go to Power Bi in web, find my report and open it up, then select the File-->Publish to Web option to get my sharing link. Sharing it with the students was simple. I could paste the link anywhere in our OneNote Class Notebook and the report would automatically pop up on the page, creating easy access (visually) for my students. Now my students could get the feedback from their peers and me on their performance assessments.
Picture
My data collection workflow
It was a bit of work to get this whole system set up, but the best part was after it was done in the beginning of September, my students and I were ready to use for the entire school year. I was able to add more data sets into the report over time (which I did), but my performance/peer assessment workflow was set in place and ready to use. 
Part 2 will continue in my next post, where I'll discuss how I used Power Bi to manage all this data. 
26 Comments
https://www.researchwritingkings.com/review-of-essaymama-com/ link
10/12/2019 02:27:18 am

Data is the most important piece of modern technology. I mean, if you do not have the data to work with, then you cannot really have anything done. I know that this is a bit hard to understand, but it is what it is. Our lives have evolved into something that values numbers and letters far more than actual hard work. I really hope that we just appreciate the people who actually do the hard work, that is my dream.

Reply
Bass Guitars link
6/20/2020 07:20:16 am

I hope that we can continue to improve this craft and this community that we have built. There is nothing that I want more than to see this community grow to the best possible version of itself, that is my dream.

Reply
Best Lathe link
6/20/2020 09:51:23 am



During times like these, I would probably call my friend. I know that family should come first, but I just feel a lot more comfortable with my friend. The bond that my friend and I have, it is far more greater than a family's bond. I know that it will take a while before I can open up to my family, and that is why I love this so much. I hope to do more from now on, man.

Reply
Classical link
6/20/2020 11:31:16 am

I hope that we can continue to improve this craft and this community that we have built. There is nothing that I want more than to see this community grow to the best possible version of itself, that is my dream.

Reply
Lloyd LWMS75BDB link
10/16/2020 03:54:38 am

I appreciate what you folks are up as well. This sort of shrewd work and inclusion! Keep up the extraordinary works folks I've added you folks to my own blogroll.

Reply
rajan tiwari link
3/12/2021 09:59:10 pm

Thank you for fantastic information I was looking for this info for my mission. I’m not certain the place you are getting your info, however good topic. I must spend some time studying much more or working out more.

Reply
HMS girls Hostel link
3/12/2021 10:00:20 pm

''Your advice or REPEAT, REPEAT, REPEAT is dead on…I really enjoy reading your posts where I can get such useful information. Thanks for all your advice. It’s invaluable!”

Reply
Nathuram link
3/12/2021 10:01:18 pm

“Thank you so much for sharing. I have found it extremely helpful…I’m off to modify some books!”

Reply
digital training india link
3/12/2021 10:02:46 pm

“Thank you so much for sharing all this wonderful info with the how-to’s!!!! It is so appreciated!!!”

Reply
Akuminium Profile link
3/12/2021 10:04:09 pm

“You always have good humor in your posts/blogs. So much fun and easy to read! And for the record, we are still at it on the Flash reading (your style) and would you believe she actually enjoys it. Yessss!!”

Reply
Aluminium angle link
3/12/2021 10:05:17 pm

“I love this blog. I don’t know what I’d do without you and your great info! Thank you so much!”

Reply
padmwati extrusion link
3/12/2021 10:06:20 pm

It's an incredible and elegant work. You indeed are doing real art, each of them is a unique conteiner of something beyond words. Congratulations.

Reply
Digital Marketing Modules link
4/2/2021 12:46:58 am

Great blog you have here.. It’s hard to find good quality writing like yours these days. I truly appreciate people like you! Take care!!

Reply
Nasha Mukti Knedra In Indore link
4/2/2021 12:48:41 am

After going over a handful of the blog articles on your blog, I honestly like your technique of writing a blog. I book marked it to my bookmark website list and will be checking back soon. Take a look at my website as well and tell me what you think.

Reply
fluval bug bites turtle pellets link
4/27/2021 11:31:36 pm

Nice post. I learn something new and challenging on websites. It's always interesting to read through articles from other authors and practice something from their web sites.

Reply
exo terra turtle feeder link
4/28/2021 01:13:36 am

Nice post. I learn something new and challenging on websites. It's always interesting to read through articles from other authors and practice something from their web sites.

Reply
Exo Terra Breeding Box link
4/30/2021 03:16:32 am

There is definately a lot to find out about this issue. I love all the points you have made.

Reply
Nasha Mukti Kendra Bhopal link
5/18/2021 04:45:12 am

I exactly got what you mean, thanks for posting. And, I am too much happy to find this website on the world of Google.Really good content at all thanks for the sharing such kin d of content

Reply
CBD oil link
10/14/2021 02:20:03 am

Your style is very unique in comparison to other folks I’ve read stufffrom. I appreciate you for posting when you’ve got the opportunity, Guess I’ll just bookmark this page.

Reply
gir national park link
1/11/2022 02:43:10 am

I was very happy to find this great site. I wanted to thank you for your time for this fantastic read!! I definitely loved every part of it and i also have you book marked to look at new things in your site.

Reply
Gir Safari Booking link
1/11/2022 02:53:53 am

Good web site! I really love how it is simple on my eyes and the data are well written. I'm wondering how I could be notified whenever a new post has been made. I have subscribed to your feed which must do the trick! Have a nice day!

Reply
Jim Corbett Safari Booking link
1/11/2022 02:54:31 am

Great post! We will be linking to this great content on our site. Keep up the good writing.

Reply
jim corbett national park link
1/11/2022 02:56:32 am

Way cool! Some extremely valid points! I appreciate you penning this write-up and also the rest of the site is also very good.

Reply
Ranthambore Safari Booking link
1/11/2022 02:57:57 am


Quality articles or reviews is the main to be a focus for the viewers to visit the website, that's what this website is providing.|

Reply
Ranthambore National Park link
1/11/2022 02:59:22 am

Hi there it's me, I am also visiting this web page regularly, this website is genuinely fastidious and the visitors are truly sharing fastidious thoughts.|

Reply
Matthew Young link
11/12/2022 04:45:54 pm

Fight know story every. Write create everybody technology north close.
One affect news society later surface nation. Crime network court until street. Television threat of test arrive glass.

Reply



Leave a Reply.

    About Me 🙂

    RSS Feed

    Tweets by @AndrewNRoxanna

    Categories

    All
    CSULB
    ETEC 551
    Flipgrid
    #MIEexpert
    Mieexpert15
    MS Office
    Office 365
    Office Lens
    OneNote
    PowerApps
    Power Bi
    Surface Pro

Proudly powered by Weebly