in samenwerking met
Op werkdagen voor 23:00 besteld, morgen in huis Gratis verzending vanaf €20
-
Inloggen
-- Inloggen
  • accountoverzicht
  • bestellingen
  • facturen betalen
  • downloadcentrum
  • gegevens
  • financieel
  • inloggen
  • uitloggen

Uw winkelwagen

Naar winkelwagen Verder winkelen
Titel niet gevonden? Wij gaan voor u op zoek!
Vul onderstaand formulier zo volledig mogelijk in, dan gaan wij voor u op zoek.
Vul onderstaand formulier zo volledig mogelijk in.
Alle rubrieken
Alle boeken
  • Cadeauboeken
  • Computer & Informatica
  • Economie
  • Filosofie
  • Flora en fauna
  • Geneeskunde
  • Geschiedenis
  • Gezondheid
  • Jeugd
  • Koken en eten
  • Kunst en cultuur
  • Literatuur en romans
  • Management
  • Mens en maatschappij
  • Naslagwerken
  • Non-fictie informatief/professioneel
  • Paramedisch
  • Psychologie
  • Reizen
  • Religie
  • Schoolboeken
  • Spiritualiteit
  • Sport, hobby, lifestyle
  • Thrillers en spanning
  • Wetenschap en techniek
  • Woordenboeken en taal
010-4091943
Klantenservice
Mijn account
Mijn bestellingen
010-4091943
Boeken IT-management / ICT Learning R
Learning R
Richard Cotton

Richie is a data scientist with a background in chemical health and safety, and has worked extensively on tools to give non-technical users access to statistical models.

Meer over Richard Cotton
Richard Cotton

Learning R

A Step-by-Step Function Guide to Data Analysis

Specificaties
Paperback, 377 blz. | Engels
O'Reilly | 1e druk, 2013
ISBN13: 9781449357108
Rubricering
Hoofdrubriek : Computer en informatica
O'Reilly 1e druk, 2013 9781449357108
61,62
In winkelwagen
Verwachte levertijd ongeveer 16 werkdagen
Samenvatting Specificaties Over de auteur Inhoudsopgave

Samenvatting

Learn how to perform data analysis with the R language and software environment, even if you have little or no programming experience. With the tutorials in this hands-on guide, you'll learn how to use the essential R tools you need to know to analyze data, including data types and programming concepts.

The second half of 'Learning R' shows you real data analysis in action by covering everything from importing data to publishing your results. Each chapter in the book includes a quiz on what you've learned, and concludes with exercises, most of which involve writing R code.

- Write a simple R program, and discover what the language can do
- Use data types such as vectors, arrays, lists, data frames, and strings
- Execute code conditionally or repeatedly with branches and loops
- Apply R add-on packages, and package your own work for others
- Learn how to clean data you import from a variety of sources
- Understand data through visualization and summary statistics
- Use statistical models to pass quantitative judgments about data and make predictions
- Learn what to do when things go wrong while writing data analysis code

Specificaties

ISBN13:9781449357108
Taal:Engels
Bindwijze:paperback
Aantal pagina's:377
Uitgever:O'Reilly
Druk:1
Verschijningsdatum:20-9-2013
Hoofdrubriek:IT-management / ICT

Over Richard Cotton

Richie is a data scientist with a background in chemical health and safety, and has worked extensively on tools to give non-technical users access to statistical models. He is the author of the R packages "assertive" for checking the state of your variables and "sig" to make sure your functions have a sensible API. He runs The Damned Liars statistics consultancy.

Andere boeken door Richard Cotton

Bekijk alle boeken

Inhoudsopgave

U kunt van deze inhoudsopgave een PDF downloaden

Part 1: The R Language
1. Introduction
-Chapter Goals
-What Is R?
-Installing R
-Choosing an IDE
-Your First Program
-How to Get Help in R
-Installing Extra Related Software
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

2. A Scientific Calculator
-Chapter Goals
-Mathematical Operations and Vectors
-Assigning Variables
-Special Numbers
-Logical Vectors
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

3. Inspecting Variables and Your Workspace
-Chapter Goals
-Classes
-Different Types of Numbers
-Other Common Classes
-Checking and Changing Classes
-Examining Variables
-The Workspace
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

4. Vectors, Matrices, and Arrays
-Chapter Goals
-Vectors
-Matrices and Arrays
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

5. Lists and Data Frames
-Chapter Goals
-Lists
-NULL
-Pairlists
-Data Frames
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

6. Environments and Functions
-Chapter Goals
-Environments
-Functions
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

7. Strings and Factors
-Chapter Goals
-Strings
-Factors
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

8. Flow Control and Loops
-Chapter Goals
-Flow Control
-Loops
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

9. Advanced Looping
-Chapter Goals
-Replication
-Looping Over Lists
-Looping Over Arrays
-Multiple-Input Apply
-Split-Apply-Combine
-The plyr Package
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

10. Packages
-Chapter Goals
-Loading Packages
-Installing Packages
-Maintaining Packages
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

11. Dates and Times
-Chapter Goals
-Date and Time Classes
-Conversion to and from Strings
-Time Zones
-Arithmetic with Dates and Times
-Lubridate
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

Part 2: The Data Analysis Workflow
12. Getting Data
-Chapter Goals
-Built-in Datasets
-Reading Text Files
-Reading Binary Files
-Web Data
-Accessing Databases
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

13. Cleaning and Transforming
-Chapter Goals
-Cleaning Strings
-Manipulating Data Frames
-Sorting
-Functional Programming
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

14. Exploring and Visualizing
-Chapter Goals
-Summary Statistics
-The Three Plotting Systems
-Scatterplots
-Line Plots
-Histograms
-Box Plots
-Bar Charts
-Other Plotting Packages and Systems
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

15. Distributions and Modeling
-Chapter Goals
-Random Numbers
-Distributions
-Formulae
-A First Model: Linear Regressions
-Other Model Types
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

16. Programming
-Chapter Goals
-Messages, Warnings, and Errors
-Error Handling
-Debugging
-Testing
-Magic
-Object-Oriented Programming
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

17. Making Packages
-Chapter Goals
-Why Create Packages?
-Prerequisites
-The Package Directory Structure
-Your First Package
-Documenting Packages
-Checking and Building Packages
-Maintaining Packages
-Summary
-Test Your Knowledge: Quiz
-Test Your Knowledge: Exercises

Part 3: Appendixes
Appendix A: Properties of Variables
Appendix B: Other Things to Do in R
Appendix C: Answers to Quizzes
Appendix D: Solutions to Exercises
Appendix E: Bibliography

Index

Anderen die dit boek kochten, kochten ook

  • Testing R Code
    Richard Cotton
    Testing R Code
    € 64,03
  • BiSL – Een Framework voor business informatiemanagement
    Remko van der Pols
    BiSL – Een Framework voor business informatiemanagement
    € 49,00
  • De Ai basisgids voor leraren
    Dieter Möckelmann
    De Ai basisgids voor leraren
    € 16,95
  • Chatten met Napoleon
    Barend Last
    Chatten met Napoleon
    € 28,25
  • The Professional Agile Leader
    Ron Eringa
    The Professional Agile Leader
    € 39,34
  • Data Management: a gentle introduction
    Bas van Gils
    Data Management: a gentle introduction
    € 54,45

Rubrieken

Uw cookie-instellingen
Deze website maakt gebruik van verschillende soorten cookies. Sommige cookies worden geplaatst door diensten van derden die op onze pagina's worden weergegeven. Om deze externe content te kunnen tonen is nodig dat u toestemming geeft voor het zetten van persoonlijke en marketingcookies. U kunt uw toestemming op elk moment wijzigen of intrekken. In onze cookieverklaring vindt u meer informatie.

Functionele cookies
Deze zijn noodzakelijk voor de werking van de website, zonder deze cookies kan de website niet naar behoren werken.

Persoonlijke en marketingcookies
Wij gebruiken cookies voor statistieken om bij te houden en rapportages te krijgen over hoe bezoekers de website gebruiken. Zo kunnen wij onze website verbeteren. Marketingcookies worden gebruikt om bezoekers te volgen wanneer ze verschillende websites bezoeken. Hun doel is advertenties weergeven die zijn toegesneden op en relevant zijn voor de individuele gebruiker.
Gratis verzending – 5% korting bij 2 of meer Nederlandse boeken – 10% korting op buitenlandse boeken

Klantenservice

Contact Voorwaarden

Bestellen en retourneren
DE STUDIEBOEKHANDEL VOOR HANZEHOGESCHOOL
Algemene voorwaarden Privacy Cookies Service & Contact
© 2025 Wristers Boekverkopers BV

    Personen

      Trefwoorden

        Learning R

        Learning R
        Richard Cotton
        /
        loader
        Recensiebeleid
        Noordhoff terugkoopgarantie

        Noordhoff koopt jouw boek terug, zonder zorgen!

        Heb je jouw boeken niet meer nodig?

        Als je jouw studieboeken gekocht hebt bij hanzestudybook.nl, kun je geselecteerde titels moeiteloos terugverkopen aan Noordhoff. Geen vragen, geen gedoe en lekker duurzaam.

        Volledige informatie op Noordhoff.nl

        AI-book

        Wat is een AI-book?

        Een AI-book is niet een boek dat geschreven is door AI maar een boek dat verrijkt is met AI. Het maakt de inhoud van een boek interactief via WhatsApp, zodat je ermee kunt chatten. Zie het als een razend slimme assistent die het boek perfect begrijpt en er alles uit onthouden heeft. Jij kunt deze assistent alles vragen. Vraag bijvoorbeeld hoe je iets kunt toepassen op jouw persoonlijke situatie, om een korte samenvatting, of wat de belangrijkste inzichten zijn. AI-books zijn alleen te gebruiken via WhatsApp, je hoeft er geen aparte app voor te installeren.
        Meer informatie over AI-books

        ?

        Geef uw beoordeling

        Learning R

        Verwijder uw beoordeling