This data flow will generate the total number of LTI links for External Learning Tools per semester so that you can determine how often tools are being used and in which courses. The course codes and tools will differ depending on what is available at your institution so you will need to update the formulas accordingly. Look at the LTI Links data set and the URL column to see all of the tools being used.
The total number of links per tool per semester will be repeated across the rows. To create the ETL data flow in Domo Analytics:
-
Start with Organizational units
-
Filter that includes rows that meet all rules: Type equals Course Offering and IsActive equals True
-
Filter that includes rows that meet any rule: Code starts with FS22, Code starts with US22, etc. (this will depend on how semesters are included in your institution's course codes)
-
Add LTI Links and filter IsVisible equals True
-
Inner join on OrgUnitId
-
Add formulas
-
Name output column Tool and use formula (find a word that is in the URL for each tool to identify it; add as many as you need):
CASE when `Url` like '%playposit%' then 'Playposit' when `Url` like '%padlet%' then 'Padlet' when `Url` like '%piazza%' then 'Piazza' when `Url` like '%h5p%' then 'H5P' else 'Other Tools' End
-
Name output column Semester and use formula (if your Code column starts with semester designations; add as many as you need):
CASE when `Code` like 'SS22%' then 'SS22' when `Code` like 'FS22%' then 'FS22' else 'Other Semester' End
-
-
Group By 1. Semester and Tool, 2. name the new column TotalLinks, 3. Tool, 4. Count
-
Inner join on Semester and Tool
-
Select desired columns