Cargando…

D3.js by example : create attractive web-based data visualizations using the amazing JavaScript library D3.js /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Heydt, Michael (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBSCO_ocn935257241
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160119s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d N$T  |d IDEBK  |d VT2  |d YDXCP  |d COO  |d TEFOD  |d DEBBG  |d OCLCQ  |d OCLCF  |d CEF  |d UKMGB  |d UAB  |d UKAHL  |d RDF  |d OCLCO  |d NZAUC  |d OCLCQ  |d QGK  |d OCLCO 
015 |a GBB6G3408  |2 bnb 
016 7 |a 018010417  |2 Uk 
019 |a 933713796  |a 934048096  |a 1259265405 
020 |a 9781785280641  |q (electronic bk.) 
020 |a 1785280643  |q (electronic bk.) 
020 |a 1785280082 
020 |a 9781785280085 
020 |z 9781785280085 
020 |z 1785280082 
024 3 |a 9781785280085 
029 1 |a AU@  |b 000057034325 
029 1 |a AU@  |b 000058967173 
029 1 |a AU@  |b 000066533607 
029 1 |a AU@  |b 000067104103 
029 1 |a DEBBG  |b BV043968666 
029 1 |a DEBSZ  |b 485791730 
029 1 |a GBVCP  |b 882751344 
029 1 |a UKMGB  |b 018010417 
035 |a (OCoLC)935257241  |z (OCoLC)933713796  |z (OCoLC)934048096  |z (OCoLC)1259265405 
037 |a CL0500000703  |b Safari Books Online 
037 |a C6CC1388-F290-43AB-8C4A-A0426A946BF1  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a TK7882.I6 
072 7 |a TEC  |x 009070  |2 bisacsh 
082 0 4 |a 621.3815422  |2 23 
049 |a UAMI 
100 1 |a Heydt, Michael,  |e author. 
245 1 0 |a D3.js by example :  |b create attractive web-based data visualizations using the amazing JavaScript library D3.js /  |c Michael Heydt. 
264 1 |a Birmingham :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed May 3, 2016) 
500 |a Includes index. 
520 8 |a Annotation  |b Create attractive web-based data visualizations using the amazing JavaScript library D3.jsAbout This Book Learn to use the facilities provided by D3.js to create data-driven visualizations Explore the concepts of D3.js through examples that enable you to quickly create visualizations including charts, network diagrams, and maps Get practical examples of visualizations using real-world data sets that show you how to use D3.js to visualize and interact with information to glean its underlying meaningWho This Book Is ForWhether you are new to data and data visualization, a seasoned data scientist, or a computer graphics specialist, this book will provide you with the skills you need to create web-based and interactive data visualizations. This book assumes some knowledge of coding and in particular, experience coding in JavaScript. What You Will Learn Install and use D3.js to create HTML elements within the document Use development tools such as JSBIN and Chrome Developer Tools to create D3.js applications Retrieve JSON data and use D3.js selections and data binding to create visual elements from data Create and style graphical elements such as circles, ellipses, rectangles, lines, paths, and text using SVG Turn your data into bar and scatter charts, and add margins, axes, labels, and legends Use D3.js generators to perform the magic of creating complex visualizations from data Add interactivity to your visualizations, including tool-tips, sorting, hover-to-highlight, and grouping and dragging of visualsIn DetailThis book will take you through all the concepts of D3.js starting with the most basic ones and progressively building on them in each chapter to expand your knowledge of D3.js. Starting with obtaining D3.js and creating simple data bindings to non-graphical HTML elements, you will then master the creation of graphical elements from data. You'll discover how to combine those elements into simple visualizations such as bar, line, and scatter charts, as well as more elaborate visualizations such as network diagrams, Sankey diagrams, maps, and choreopleths. Using practical examples provided, you will quickly get to grips with the features of D3.js and use this learning to create your own spectacular data visualizations with D3.js. Style and approachThis book uses a practical, step-by-step approach that builds iteratively, starting with the basic concepts right through to mastery of the technology. Each concept is demonstrated using code examples that are interactively available online (and can also be run locally), and each chapter builds upon the concepts covered in the previous chapter, with succinct explanations of what the code does and how it fits into the bigger picture. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started with D3.js; A brief overview of D3.js; Selections; Data and data binding; Interaction and animation; Modules; Tools for creating and sharing D3.js visualizations; Js Bin; bl.ocks.org; Google Chrome and Developer tools; Hello World -- D3.js style; Examining the DOM generated by D3.js; Summary; Chapter 2: Selections and Data Binding; D3.js selections; Changing the style of a DOM element; Changing the style of multiple items; D3.js and data binding 
505 8 |a Data bindingSpecifying the entering elements with .enter(); Adding new items using .enter(); Updating values; Removing items with .exit(); A few notes for the wise about the general update pattern; Summary; Chapter 3: Creating Visuals with SVG; Introducing SVG; The SVG coordinate system; SVG attributes; Drawing circles with SVG; The basic shapes provided by SVG; Ellipse; Rectangle; Lines; Paths; Text; Applying CSS styles to SVG elements; Strokes, caps, and dashes; Applying SVG transforms; Rotate; Translate; Scale; Groups; Transparency; Layers; Summary; Chapter 4: Creating a Bar Graph 
505 8 |a The basic bar graphAdding labels to the bars; Margins and axes; Creating margins in the bar graph; Creating an axis; Changing the axis orientation; Inverting the labels on an axis; Adding the axis to the graph; Summary; Chapter 5: Using Data and Scales; Data; Loading data with D3.js; Loading JSON data; Loading TSV data; Loading CSV data; Mapping fields and converting strings to numbers; Scales; Linear scales; Ordinal scales; Mapping color strings to codes; Mapping integers to color scales; The ordinal scale using rangeBands; Visualizing The Walking Dead viewership; Summary 
505 8 |a Chapter 6: Creating Scatter and Bubble PlotsCreating scatter plots; Plotting points; Sprucing up the scatter plot; Adding gridlines; Creating a bubble plot; Summary; Chapter 7: Creating Animated Visuals; Introduction to animation; Animating using transitions; Animating the fill color of a rectangle; Animating multiple properties simultaneously; Delaying a transition; Creating chained transitions; Handling the start and end events of transitions; Changing the content and size of text using tweening; Timers; Adding a fifth dimension to a bubble plot -- time; Summary 
505 8 |a Chapter 8: Adding User InteractivityHandling mouse events; Tracking the mouse position using mousemove; Capturing the mouse entering and exiting an SVG element; Letting the user know they have clicked the mouse; Using behaviors to drag, pan, and zoom; Drag; Pan and zoom; Enhancing a bar graph with interactivity; Highlighting selected items using brushes; Online examples of brushes; Implementing focus + context; Summary; Chapter 9: Complex Shapes Using Paths; An overview of path data generators; Creating a sequence of lines; Areas; Creating arcs, donuts, wedges, and segments 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Information visualization  |x Data processing. 
650 0 |a JavaScript (Computer program language) 
650 6 |a Visualisation de l'information  |x Informatique. 
650 6 |a JavaScript (Langage de programmation) 
650 7 |a TECHNOLOGY & ENGINEERING  |x Mechanical.  |2 bisacsh 
650 7 |a JavaScript (Computer program language)  |2 fast 
776 |z 1-78528-008-2 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1134524  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH29891091 
938 |a EBSCOhost  |b EBSC  |n 1134524 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33469503 
938 |a YBP Library Services  |b YANK  |n 12772119 
994 |a 92  |b IZTAP