Report on the Springshare LibGuides System at West Virginia University
Author
LibGuides Working Group
Section 1: Usage Data | Springshare LibGuides System
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vitae suscipit tellus mauris a diam maecenas sed.
Code
traffic_dsGT <- traffic_ds %>%select( Users_total, New_users_total, Percent_new_users_mean, Sessions_total, Users_sessions_mean, Bounce_rate_mean, Pages_session_mean, Avg_session_duration_mean ) %>%gt() %>%#set theme as ESPNgt_theme_espn() %>%#format columnsfmt_number(decimals =1, columns =c(Percent_new_users_mean, Users_sessions_mean, Bounce_rate_mean, Pages_session_mean, Avg_session_duration_mean), use_seps =FALSE, drop_trailing_dec_mark =FALSE) %>%fmt_percent(columns =c(Percent_new_users_mean, Bounce_rate_mean), scale_values =FALSE, decimals =1) %>%fmt_duration(output_units =c("minutes", "seconds"), columns = Avg_session_duration_mean) %>%#columns names, widths, and alignmentscols_label(Users_total ="Total",New_users_total ="New",Percent_new_users_mean ="Percent New",Sessions_total ="Total",Users_sessions_mean ="per User",Bounce_rate_mean ="Bounce Rate",Pages_session_mean =" Pages Viewed",Avg_session_duration_mean ="Duration" ) %>%cols_width(c(Users_total, New_users_total, Percent_new_users_mean, Sessions_total, Users_sessions_mean, Bounce_rate_mean, Pages_session_mean, Avg_session_duration_mean) ~pct(12.5) ) %>%cols_align(align ="left") %>%#format table (add spanners, title, footnotes, font size, etc...)tab_options(table.font.size =12, table.width =pct(100)) %>%tab_spanner(label ="Users", columns = Users_total:Percent_new_users_mean) %>%tab_spanner(label ="Sessions", columns = Sessions_total:Avg_session_duration_mean) %>%tab_header(title =md("**Springshare Website Pages and Guides Usage** | at West Virginia University"),subtitle =md("This table contains information on users accessing and using guides and pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics") )traffic_dsGT
Springshare Website Pages and Guides Usage | at West Virginia University
This table contains information on users accessing and using guides and pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vitae suscipit tellus mauris a diam maecenas sed.
guides_byType_GT <- guides_GASS_byType %>%arrange(desc(Pageviews_total_total)) %>%gt(rowname_col ="Type") %>%#set themegt_theme_espn() %>%#format columnsfmt_number(decimals =1, columns = Avg_views, use_seps =FALSE) %>%fmt_percent(decimals =1, columns =c(Bounce_Rate_mean_mean, Percent_Exit_mean_mean),scale_values =FALSE ) %>%fmt_duration(columns = Avg_Time_on_Page_total_mean, output_units =c("minutes", "seconds")) %>%cols_label(N ="N",Pageviews_total_total ="Total",Avg_views ="Average",Unique_Pageviews_total_total ="Unique",Entrances_total_total ="Entrances",Avg_Time_on_Page_total_mean ="Duration",Bounce_Rate_mean_mean ="Bounce Rate",Percent_Exit_mean_mean ="Exit Rate" ) %>%cols_width(c(N:Percent_Exit_mean_mean) ~px(10), Type ~px(20) ) %>%cols_align(align ="left") %>%# format tabletab_options(table.font.size =12, table.width =pct(100)) %>%tab_spanner(label ="Views", columns = Pageviews_total_total:Unique_Pageviews_total_total) %>%tab_header(title =md("**Guide Usage by Type** | at West Virginia University"),subtitle =md("This table contains information on types of guides in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Springshare Statistics and Google Analytics"))guides_byType_GT
Guide Usage by Type | at West Virginia University
This table contains information on types of guides in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Springshare Statistics and Google Analytics
N
Views
Entrances
Duration
Bounce Rate
Exit Rate
Total
Average
Unique
Topic Guide
35
358791
10251.2
244091
218270
5m 2s
52.1%
46.9%
General Purpose
91
129385
1421.8
80564
63903
4m 1s
41.8%
39.8%
Subject Guide
80
45108
563.9
28480
19691
2m 58s
44.5%
41.5%
Course Guide
70
34254
489.3
20072
12571
3m 14s
41.5%
41.8%
Code
#top guides listed as subject guidesguides_subjGT <- guides_ds %>%filter(Pageviews_total >500& Type =="Subject Guide") %>%select(-Type, -Owner, -Status) %>%arrange(desc(Pageviews_total)) %>%gt(rowname_col ="Guide_Name") %>%# set themegt_theme_espn() %>%#format columnsfmt_percent(decimals =1, columns =c(Bounce_Rate_mean, Percent_Exit_mean), scale_values =FALSE) %>%fmt_duration(columns = Avg_Time_on_Page_total, output_units =c("minutes", "seconds")) %>%fmt_url(columns = URL, show_underline =FALSE, color ="coral", label ="guide") %>%cols_label(Pageviews_total ="Views",Unique_Pageviews_total ="Unique Views",Avg_Time_on_Page_total ="Duration",Entrances_total ="Entrances",Bounce_Rate_mean ="Bounce Rate",Percent_Exit_mean ="Exit Rate" ) %>%cols_merge(columns =c(Guide_Name, URL),pattern ="{1} - ({2})" ) %>%cols_width(c(Pageviews_total:Percent_Exit_mean) ~px(10), Guide_Name ~pct(40) ) %>%cols_align(align ="left") %>%#format tabletab_options(table.font.size =12, table.width =pct(100)) %>%tab_header(title =md("**Individual Subject Guide Usage** | at West Virginia University"),subtitle =md("This table contains information on individual subject guides with over 500 views in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics"))guides_subjGT
Individual Subject Guide Usage | at West Virginia University
This table contains information on individual subject guides with over 500 views in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics
guides_courseGT <- guides_ds %>%filter(Pageviews_total >100& Type =="Course Guide") %>%select(-Type, -Status, -Owner) %>%arrange(desc(Pageviews_total)) %>%gt(rowname_col ="Guide_Name") %>%# set themegt_theme_espn() %>%#format columnsfmt_percent(decimals =1, columns =c(Bounce_Rate_mean, Percent_Exit_mean), scale_values =FALSE) %>%fmt_duration(columns = Avg_Time_on_Page_total, output_units =c("minutes", "seconds")) %>%fmt_url(columns = URL,label ="guide",show_underline =FALSE,color ="skyblue" ) %>%cols_label(Pageviews_total ="Views",Unique_Pageviews_total ="Unique Views",Avg_Time_on_Page_total ="Duration",Entrances_total ="Entrances",Bounce_Rate_mean ="Bounce Rate",Percent_Exit_mean ="Exit Rate" ) %>%cols_merge(columns =c(Guide_Name, URL),pattern ="{1} - ({2})" ) %>%cols_width(c(Pageviews_total:Percent_Exit_mean) ~pct(10), Guide_Name ~pct(40) ) %>%cols_align(align ="left") %>%#format tabletab_options(table.font.size =12, table.width =pct(100)) %>%tab_header(title =md("**Individual Course Guide Usage** | at West Virginia University"),subtitle =md("This table contains information on individual course guides with over 100 views in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics"))guides_courseGT
Individual Course Guide Usage | at West Virginia University
This table contains information on individual course guides with over 100 views in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics
guideSS_byLibrarian <- guideSS_long_pub %>%distinct(Guide_Name.x, Owner) %>%count(Owner) %>%arrange(desc(n))guideSS_byLibrarianGT <- guideSS_byLibrarian %>%gt() %>%gt_theme_espn() %>%cols_label(Owner ="Librarian",n ="Guides" ) %>%cols_align(align ="left") %>%cols_width(Owner ~pct(75), n ~pct(25)) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_header(title =md("Number of Guides by Librarian | at West Virginia University"),subtitle =md("This table contains information on the number of guides a librarian has published in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collect from Springshare") )guideSS_byLibrarianGT
Number of Guides by Librarian | at West Virginia University
This table contains information on the number of guides a librarian has published in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collect from Springshare
Librarian
Guides
Wright, Alyssa
37
Fonseca, Catherine
30
Yancey, Martha
30
Steele, Matt
29
Werst, Jeff
27
Toren, Beth
26
Rogerson, Terra
24
Jacobs, Chelsea
23
Miller, Stephanie
18
Dunlap, Martin
17
Stump, Nicholas
12
Cady, Miriam
11
Royall, Beth
11
Thurman, Faythe
10
McAllister-Erickson, Jonah
9
Fredette, Access Services, Hilary
8
Monnin, Jennifer
8
Crawford, Anna
6
Desouky, Virginia
5
Diamond, Kelly
4
Armour-Gemmen, Marian
3
Hostuttler, Lori
3
Purvis, Ashley
2
Vanderhoff, Jessica
2
Bealmear, Atsuko
1
Dubetz, Jennifer
1
Emerling, Danielle
1
Fidelman, Emily
1
Code
#count of course guides by UserguideSS_course_byLibrarian <- guideSS_long_pub %>%filter(Type =="Course Guide") %>%distinct(Guide_Name.x, Owner) %>%count(Owner) %>%arrange(desc(n))guideSS_course_byLibrarianGT <- guideSS_course_byLibrarian %>%gt() %>%gt_theme_espn() %>%cols_label(Owner ="Librarian",n ="Course Guides" ) %>%cols_align(align ="left") %>%cols_width(Owner ~pct(75), n ~pct(25)) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_header(title =md("Number of Course Guides by Librarian | at West Virginia University"),subtitle =md("This table contains information on the number of course guides a librarian has published in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collect from Springshare") )guideSS_course_byLibrarianGT
Number of Course Guides by Librarian | at West Virginia University
This table contains information on the number of course guides a librarian has published in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collect from Springshare
Librarian
Course Guides
Wright, Alyssa
19
Werst, Jeff
18
Fonseca, Catherine
14
Yancey, Martha
13
Dunlap, Martin
8
Steele, Matt
8
Rogerson, Terra
7
Royall, Beth
4
Toren, Beth
4
Cady, Miriam
3
Jacobs, Chelsea
3
Miller, Stephanie
2
Thurman, Faythe
2
Armour-Gemmen, Marian
1
Crawford, Anna
1
Hostuttler, Lori
1
Purvis, Ashley
1
Code
guideSS_subject_byLibrarian <- guideSS_long_pub %>%filter(Type !="Subject Guide") %>%distinct(Guide_Name.x, Owner) %>%count(Owner) %>%arrange(desc(n))guideSS_subject_byLibrarianGT <- guideSS_subject_byLibrarian %>%gt() %>%gt_theme_espn() %>%cols_label(Owner ="Librarian",n ="Subject Guides" ) %>%cols_align(align ="left") %>%cols_width(Owner ~pct(75), n ~pct(25)) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_header(title =md("Number of Subject Guides by Librarian | at West Virginia University"),subtitle =md("This table contains information on the number of subject guides a librarian has published in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collect from Springshare") )guideSS_subject_byLibrarianGT
Number of Subject Guides by Librarian | at West Virginia University
This table contains information on the number of subject guides a librarian has published in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collect from Springshare
Librarian
Subject Guides
Wright, Alyssa
33
Werst, Jeff
23
Yancey, Martha
22
Toren, Beth
21
Fonseca, Catherine
18
Miller, Stephanie
16
Steele, Matt
16
Dunlap, Martin
12
Jacobs, Chelsea
12
Cady, Miriam
10
Stump, Nicholas
10
Fredette, Access Services, Hilary
8
McAllister-Erickson, Jonah
8
Rogerson, Terra
8
Thurman, Faythe
7
Royall, Beth
6
Desouky, Virginia
4
Diamond, Kelly
4
Armour-Gemmen, Marian
3
Crawford, Anna
3
Hostuttler, Lori
2
Monnin, Jennifer
2
Vanderhoff, Jessica
2
Bealmear, Atsuko
1
Emerling, Danielle
1
Fidelman, Emily
1
Purvis, Ashley
1
Section 3: Usage Data | Non-Guide Page Use
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Code
homepageGT <- homepageGA %>%select(-Guide_name) %>%gt(rowname_col ="Page") %>%gt_theme_espn() %>%# format columnsfmt_percent(columns =c(Bounce_Rate, Percent_Exit), scale_values =FALSE, decimals =1) %>%fmt_duration(output_units =c("minutes", "seconds"), columns = Avg_Time_on_Page) %>%# Format labels, width, alignmentcols_label(Pageviews ="Views",Unique_Pageviews ="Unique Views",Avg_Time_on_Page ="Time on Page",Entrances ="Entrances",Bounce_Rate ="Bounce Rate",Percent_Exit ="Exit Rate" ) %>%cols_width(c(Pageviews:Percent_Exit) ~pct(10), Page_name ~pct(40) ) %>%cols_align(align ="left") %>%#table formattab_options(table.font.size =12, table.width =pct(100)) %>%tab_header(title =md("**Non-Guide Pages Usage** | at West Virginia University"),subtitle =md("This table contains information on non-guide pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics") ) homepageGT
Non-Guide Pages Usage | at West Virginia University
This table contains information on non-guide pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics
Page_name
Views
Unique Views
Time on Page
Entrances
Bounce Rate
Exit Rate
Home
17320
10244
33s
8927
25.0%
25.0%
Search
10022
6260
45s
288
32.0%
18.0%
Law Library Home
1098
618
53s
226
28.0%
30.0%
A-Z Databases
1094
384
41s
293
56.0%
30.0%
Guides BY SUBJECT
1057
748
33s
440
39.0%
32.0%
ALL GUIDES Alphabetically
165
117
1m 9s
53
53.0%
36.0%
Profiles
144
94
33s
38
29.0%
24.0%
West Virginia and Regional History Center
131
93
40s
19
47.0%
13.0%
Code
listing_pagesGT <- listing_pages %>%gt(rowname_col ="Guide_name") %>%gt_theme_espn() %>%fmt_percent(columns =c(Bounce_Rate_mean, Percent_Exit_mean), decimals =1, scale_values =FALSE) %>%fmt_duration(columns = Avg_Time_on_Page_mean, output_units =c("minutes", "seconds")) %>%cols_label(Pageviews_total ="Views",Unique_Pageviews_total ="Unique Views",Entrances_total ="Entrances",Bounce_Rate_mean ="Bounce Rate",Percent_Exit_mean ="Exit Rate",Avg_Time_on_Page_mean ="Time on Page" ) %>%cols_align(align ="left") %>%tab_options(table.font.size =12, table.width =pct(100)) %>%tab_header(title =md("**Listing Pages Usage** | at West Virginia University"),subtitle =md("This table contains information on listing pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics") ) listing_pagesGT
Listing Pages Usage | at West Virginia University
This table contains information on listing pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics
subject_expert_missing <- df_subjects %>%filter(Experts <1)subject_expert_missingGT <- subject_expert_missing %>%select(-Experts) %>%gt(rowname_col ="Name") %>%gt_theme_espn() %>%tab_options(table.width =pct(100),table.font.size =12 ) %>%fmt_url(columns = URL, label ="listing", show_underline =FALSE, color ="magenta") |>cols_merge(columns =c(Name, URL),pattern ="{1} - ({2})" ) |>cols_label(URL ="listing" ) |>cols_align(align ="left") %>%cols_width(Name ~pct(40), c(Guides:ID) ~pct(15)) %>%tab_header(title =md("**Subjects with No Expert Assignment** | at West Virginia University"),subtitle =md("This table contains information on subject assignments that are missing experts in the Springshare LibGuide System at WVU collected from Springshare") )subject_expert_missingGT
Subjects with No Expert Assignment | at West Virginia University
This table contains information on subject assignments that are missing experts in the Springshare LibGuide System at WVU collected from Springshare
subject_guide_missing <- df_subjects %>%filter(Guides <1)subject_guide_missingGT <- subject_guide_missing %>%select(-Guides, -Experts) %>%gt(rowname_col ="Name") %>%gt_theme_espn() %>%tab_options(table.width =pct(100),table.font.size =12 ) %>%fmt_url(columns = URL, label ="listing", show_underline =FALSE, color ="magenta") |>cols_merge(columns =c(Name, URL),pattern ="{1} - ({2})" ) |>cols_label(URL ="listing" ) |>cols_align(align ="left") %>%cols_width(Name ~pct(55), c(Assets:ID) ~pct(15)) %>%tab_header(title =md("**Subjects with No Guide Assignments** | at West Virginia University"),subtitle =md("This table contains information on subject assignments that are missing guides in the Springshare LibGuide System at WVU collected from Springshare") )subject_guide_missingGT
Subjects with No Guide Assignments | at West Virginia University
This table contains information on subject assignments that are missing guides in the Springshare LibGuide System at WVU collected from Springshare
traffic_medium_ds <- traffic %>%select(-Source) %>%filter(Medium =="organic"| Medium =="direct"| Medium =="referral") %>%group_by(Medium) %>%summarise(across(everything(), list(total=sum, mean=mean)))traffic_medium_ds$Avg_session_duration_mean <-round(traffic_medium_ds$Avg_session_duration_mean, digits =1)traffic_medium_n <- traffic %>%filter(Medium =="organic"| Medium =="direct"| Medium =="referral") %>%group_by(Medium) %>%summarise(n =n())referral_ds <- traffic_medium_n %>%left_join(traffic_medium_ds, by ="Medium") %>%select(-Percent_new_users_total, -Users_mean,-New_users_mean,-Sessions_mean,-Users_sessions_total, -Bounce_rate_total, -Pages_session_total, -Avg_session_duration_total)traffic_medium_gt <- referral_ds %>%arrange(referral_ds, desc(Users_total)) %>%gt(rowname_col ="Medium") %>%#set ESPN themegt_theme_espn() %>%fmt_number(decimals =1, columns =c(Percent_new_users_mean, Users_sessions_mean, Bounce_rate_mean, Pages_session_mean, Avg_session_duration_mean), use_seps =FALSE, drop_trailing_dec_mark =FALSE) %>%fmt_percent(columns =c(Percent_new_users_mean, Bounce_rate_mean), scale_values =FALSE, decimals =1) %>%fmt_duration(output_units =c("minutes", "seconds"), columns = Avg_session_duration_mean) %>%#columns labels, widths, and alignmentscols_label(n ="Instances",Users_total ="Total",New_users_total ="New",Percent_new_users_mean ="Percent New",Sessions_total ="Total",Users_sessions_mean ="per User",Bounce_rate_mean ="Bounce Rate",Pages_session_mean =" Pages Viewed",Avg_session_duration_mean ="Duration" ) %>%cols_align(align ="left") %>%#format table (add spanners, title, footnotes, font size, etc...)cols_width(c(Medium:Avg_session_duration_mean) ~pct(10) ) |>tab_options(table.font.size =12, table.width =pct(100)) %>%tab_spanner(label ="Users", columns = Users_total:Percent_new_users_mean) %>%tab_spanner(label ="Sessions", columns = Sessions_total:Avg_session_duration_mean) %>%tab_header(title =md("**Library Guides Access** | at West Virginia University"),subtitle =md("This table contains information on how users access guides and pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics") )traffic_medium_gt
Library Guides Access | at West Virginia University
This table contains information on how users access guides and pages in the Springshare LibGuide System at WVU collected from April 2022 to April 2023 in Google Analytics
Instances
Users
Sessions
Total
New
Percent New
Total
per User
Bounce Rate
Pages Viewed
Duration
direct
1
17210
17024
98.9%
24797
1.4
44.2%
2.5
1m 54s
organic
10
238394
235707
99.2%
290259
1.1
64.0%
1.5
43s
referral
431
12327
9826
79.2%
22022
1.4
47.3%
2.4
1m 41s
Code
traffic_referralTop <- traffic %>%filter(Medium =="referral"& Users >=50)traffic_referralGT <- traffic_referralTop %>%select(-Medium) %>%arrange(desc(Users)) %>%gt(rowname_col ="Source") %>%gt_theme_espn() %>%fmt_percent(columns =c(Percent_new_users, Bounce_rate), scale_values =FALSE, decimals =1) %>%fmt_number(columns = Users_sessions, decimals =2) %>%fmt_duration(columns = Avg_session_duration, output_units =c("minutes", "seconds")) %>%cols_label(Users ="Total",New_users ="New",Percent_new_users ="Percent New",Sessions ="Total",Users_sessions ="Per User", Bounce_rate ="Bounce Rate",Pages_session ="Pages",Avg_session_duration ="Duration" ) %>%cols_align(align ="left") %>%cols_width( Source ~pct(32.5), c(Users:Avg_session_duration) ~pct(7.5) ) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_spanner(label ="Referral Users",columns = Users:Percent_new_users ) %>%tab_spanner(label ="Referral Sessions",columns = Sessions:Avg_session_duration ) %>%tab_header(title =md("**Usage by Referral Website** | at West Virginia University"),subtitle =md("This table contains information on websites referring users to the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics") )traffic_referralGT
Usage by Referral Website | at West Virginia University
This table contains information on websites referring users to the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics
device_catGT <- device_cat %>%gt(rowname_col ="Device_Category") %>%gt_theme_espn() %>%fmt_percent(decimals =1, scale_values =FALSE, columns =c(Percent_New_Users, Percent_Users, Percent_sessions, Bounce_Rate) ) %>%fmt_number(decimals =1, columns = Pages_Session,use_seps =FALSE, drop_trailing_dec_mark =FALSE) %>%fmt_duration(output_units =c("minutes", "seconds"), columns = Avg_Session_Duration) %>%cols_label(Users ="Total",Percent_Users ="Percent Using Device",New_Users ="New Users",Percent_New_Users ="Percent New",Sessions ="Total",Percent_sessions ="Percent Using Device",Pages_Session ="Pages",Bounce_Rate ="Bounce Rate", Avg_Session_Duration ="Time on Page" ) %>%cols_align(align ="left") %>%cols_width(c(Users:Avg_Session_Duration) ~pct(10), Device_Category ~pct(10) ) %>%tab_options(table.font.size =12, table.width =pct(100)) %>%tab_spanner(label ="Device Users", columns = Users:Percent_New_Users) %>%tab_spanner(label =" Device Sessions", columns = Sessions:Avg_Session_Duration) %>%tab_header(title =md("**Usage by Type of Device** | at West Virginia University"),subtitle ="This table contains information on the types of device users use to access the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics" ) device_catGT
Usage by Type of Device | at West Virginia University
This table contains information on the types of device users use to access the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics
Device Users
Device Sessions
Total
Percent Using Device
New Users
Percent New
Total
Percent Using Device
Bounce Rate
Pages
Time on Page
desktop
216205
81.8%
214490
99.2%
281237
83.5%
55.0%
1.9
1m 20s
mobile
46186
17.5%
46056
99.7%
53503
15.9%
58.0%
1.8
55s
tablet
1803
0.7%
1794
99.5%
2225
0.7%
51.0%
2.1
1m 29s
Code
device_GT <- device_df %>%filter(Users_total >=1000) %>%gt(rowname_col ="Device") %>%gt_theme_espn() %>%fmt_percent(decimals =1, scale_values =FALSE, columns =c(Percent_New_Users, Percent_Users, Percent_sessions, Bounce_Rate_mean) ) %>%fmt_number(decimals =1, columns = Pages_Session_mean,use_seps =FALSE, drop_trailing_dec_mark =FALSE) %>%fmt_duration(output_units =c("minutes", "seconds"), columns = Avg_Session_Duration_mean) %>%cols_label(Users_total ="Total",Percent_Users ="Percent Using Device",New_Users_total ="New Users",Percent_New_Users ="Percent New",Sessions_total ="Total",Percent_sessions ="Percent Using Device",Pages_Session_mean ="Pages",Bounce_Rate_mean ="Bounce Rate", Avg_Session_Duration_mean ="Time on Page" ) %>%cols_align(align ="left") %>%cols_width(c(Users_total:Avg_Session_Duration_mean) ~pct(10), Device ~pct(10) ) %>%tab_options(table.font.size =12, table.width =pct(100)) %>%tab_spanner(label ="Users", columns = Users_total:Percent_Users) %>%tab_spanner(label ="Sessions", columns = Sessions_total:Avg_Session_Duration_mean) %>%tab_header(title =md("**Usage by Type of Mobile Device** | at West Virginia University"),subtitle ="This table contains information on the types of mobile device users use to access the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics" )device_GT
Usage by Type of Mobile Device | at West Virginia University
This table contains information on the types of mobile device users use to access the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics
Users
Sessions
Total
New Users
Percent New
Percent Using Device
Total
Percent Using Device
Bounce Rate
Pages
Time on Page
Apple
28158
27982
99.4%
59.0%
32688
59.1%
42.7%
2.2
48s
Samsung Galaxy
9484
9458
99.7%
19.9%
10865
19.6%
54.6%
1.8
54s
Xiaomi
1403
1398
99.6%
2.9%
1688
3.0%
48.6%
1.8
1m 6s
Motorola
1270
1269
99.9%
2.7%
1443
2.6%
53.3%
1.8
26s
Google Pixel
1114
1115
100.1%
2.3%
1224
2.2%
52.6%
1.8
32s
Code
browserGT <- browserGA %>%gt(rowname_col ="Browser") %>%gt_theme_espn() %>%fmt_percent(decimals =1, scale_values =FALSE, columns =c(Percent_New_Users, Percent_Users, Percent_sessions, Bounce_Rate) ) %>%fmt_number(decimals =1, columns = Pages_Session,use_seps =FALSE, drop_trailing_dec_mark =FALSE) %>%fmt_duration(output_units =c("minutes", "seconds"), columns = Avg_Session_Duration) %>%cols_label(Users ="Total",Percent_Users ="Percent Using Browser",New_Users ="New Users",Percent_New_Users ="Percent New",Sessions ="Total",Percent_sessions ="Percent Using Browser",Pages_Session ="Pages",Bounce_Rate ="Bounce Rate", Avg_Session_Duration ="Time on Page" ) %>%cols_align(align ="left") %>%cols_width(c(Users:Avg_Session_Duration) ~pct(10), Browser ~pct(10) ) %>%tab_options(table.font.size =12, table.width =pct(100)) %>%tab_spanner(label ="Browser Users", columns = Users:Percent_New_Users) %>%tab_spanner(label =" Browser Sessions", columns = Sessions:Avg_Session_Duration) %>%tab_header(title =md("**Usage by Browser** | at West Virginia University"),subtitle ="This table contains information on the types of browsers with over 2000 views that users use to access the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics" ) browserGT
Usage by Browser | at West Virginia University
This table contains information on the types of browsers with over 2000 views that users use to access the Springshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Google Analytics
Browser Users
Browser Sessions
Total
Percent Using Browser
New Users
Percent New
Total
Percent Using Browser
Bounce Rate
Pages
Time on Page
Chrome
176036
66.3%
173240
98.4%
227509
67.6%
55.0%
1.9
1m 18s
Safari
61149
23.0%
60746
99.3%
72322
21.5%
57.0%
1.9
1m 7s
Edge
13247
5.0%
13228
99.9%
17468
5.2%
51.0%
2.1
1m 23s
Firefox
10478
3.9%
10436
99.6%
13679
4.1%
56.0%
1.9
1m 12s
Opera
2109
0.8%
2089
99.1%
2795
0.8%
56.0%
1.8
1m 18s
Section 6: Asset Use within the Libguides System
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Code
all_assetsGT <- all_assets %>%gt(rowname_col ="Type") %>%gt_theme_espn() %>%cols_label(count ="One Year",Total ="Five Years" ) %>%cols_align(align ="left") %>%cols_width( Type ~pct(50),c(count, Total) ~pct(25) ) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_header(title =md("**Asset Use by Type** | at West Virginia University"),subtitle =md("This table contains use of assets by type from the Springshare LibGuide System at WVU collected from April 2018 to April 2023 collected from Springshare") )all_assetsGT
Asset Use by Type | at West Virginia University
This table contains use of assets by type from the Springshare LibGuide System at WVU collected from April 2018 to April 2023 collected from Springshare
freq_stemGT <- freq_stem_sys %>%filter(n >=25) %>%gt() %>%gt_theme_espn() %>%cols_label(stem ="Search Term Stem",n ="Total",freq ="Frequency" ) %>%cols_align(align ="left") %>%cols_width(stem ~pct(50), c(n:freq) ~pct(25)) %>%fmt_percent(columns = freq, scale_values =FALSE, decimals =2) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_header(title =md("**Search Terms used on LibGuides Homepage** | at West Virginia University"),subtitle =md("This table contains number of time the tokenized and stemmed keywords are used in a unique search in the search box on the Homepage of the Sringshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Springshare") )freq_stemGT
Search Terms used on LibGuides Homepage | at West Virginia University
This table contains number of time the tokenized and stemmed keywords are used in a unique search in the search box on the Homepage of the Sringshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Springshare
Search Term Stem
Total
Frequency
cite
73
0.83%
research
56
0.64%
scienc
51
0.58%
develop
49
0.56%
citat
48
0.55%
social
46
0.52%
journal
44
0.50%
author
43
0.49%
style
41
0.47%
report
40
0.46%
educ
39
0.44%
book
38
0.43%
manag
38
0.43%
articl
37
0.42%
data
37
0.42%
health
37
0.42%
review
35
0.40%
studi
35
0.40%
exercis
32
0.37%
parent
32
0.37%
plant
32
0.37%
theori
32
0.37%
sourc
31
0.35%
write
30
0.34%
commun
29
0.33%
childhood
28
0.32%
student
28
0.32%
chicago
26
0.30%
war
26
0.30%
american
25
0.29%
colleg
25
0.29%
media
25
0.29%
Code
bigram_stemGT <- bigram_counts_stem %>%filter(n >=2) %>%gt() %>%gt_theme_espn() %>%cols_label(stem1 ="First Stem",stem2 ="Second Stem",n ="Total" ) %>%cols_align(align ="left") %>%cols_width(c(stem1:n) ~pct(33.3)) %>%tab_options(table.width =pct(100), table.font.size =12) %>%tab_header(title =md("**Search Terms Relationships used on LibGuides Homepage** | at West Virginia University"),subtitle =md("This table contains bigrammed and stemmed keywords and users entered into the search box on the Homepage of the Sringshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Springshare") )bigram_stemGT
Search Terms Relationships used on LibGuides Homepage | at West Virginia University
This table contains bigrammed and stemmed keywords and users entered into the search box on the Homepage of the Sringshare LibGuide System at WVU collected from April 2022 to April 2023 collected from Springshare