Phranakorn Rajabhat University Library

Innovations in digital research methods /

Halfpenny, Peter

Innovations in digital research methods / Peter Halfpenny & Rob Procter, author - Los Angeles : SAGE, 2015 - xvi, 318 p. : ill., maps ; 24 cm.

Includes bibliographical references and index

1. Introduction and overview page 1-24 -- 2. The changing social data landscape page 25-58 -- 3. Exploiting new sources of data page 59-84 -- 4. Survey methods: Challenges and opportunities page 85-104 -- 5. Advances in data management for social survey research page 105-122 -- 6. Modelling and simulation page 123-142 -- 7. Contemporary developments in statistical software for social scientists page 143-160 -- 8. Text mining and social media: When quantitative meets qualitative, and software meets people page 161-192 -- 9. Digital records and the digital replay system page 193-220 -- 10. Social network analysis page 221-244 -- 11. Visualising spatial data and social media page 245-270 -- 12. Ethical praxis in digital social research page 271-296 -- 13. Sociology and the digital challenge page 297-310

9781446203095 2242


SOCIAL SCIENCES--RESEARCH--METHODOLOGY
INTERNET RESEARCH
SOCIAL MEDIA--RESEARCH
INTERNET--SOCIAL ASPECTS

H 62 / H34I 2015

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });