Phranakorn Rajabhat University Library

Principles and practice of big data /

Berman, Jules J.

Principles and practice of big data / Principles and practice of big data: Preparing, sharing, and analyzing complex information Jules J. Berman - London : Academic Press, 2018 - XXVIII, 452 p. : ill. ; 24 cm.

1. Introduction page 1-14 -- 2. Providing structure to unstructured data page 15-52 --3. Identification, deidentification, and reidentification page 53-84 -- 4. Metadata, semantics, and triples page 85-96 -- 5.Classifications and ontologies page 97-136 -- 6. Introspection page 137-154 -- 7. Standards and data integration page 155-168 -- 8. Immutability and immortality page 169-184 -- 9. Assessing the adequacy of a big data resource page 185-206 -- 10. Measurement page 207-230 11. Indispensable tips for fast and simple big data analysis page 231-258 -- 12. Finding the clues in large collections of data page 259-276 -- 13. Using random numbers to knock your big data analytic problems down to size page 277-302 -- 14. Special considerations in big data analysis page 303-320 -- 15. Big data failures and how to avoid (some of) them page 321-350 -- 16. Data reanalysis: Much more important than analysis page 351-362 -- 17. Repurposing Big data page 363-372 -- 18. Data sharing and data security page 373-394 -- 19. Legalities page 395-418 -- 20. Societal issues page 419-444

9780128156094 3780


BIG DATA
DATA BASES
DATABASE MANAGEMENT

QA 76.9.B45 / B47P 2018

มหาวิทยาลัยศรีปทุม (กทม.)
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.

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