0
Your cart

Your cart is empty

Browse All Departments
  • All Departments
Price
  • R500 - R1,000 (9)
  • R1,000 - R2,500 (3)
  • -
Status
Brand

Showing 1 - 12 of 12 matches in All Departments

Essential Math for Data Science - Take Control of Your Data with Fundamental Linear Algebra, Probability, and Statistics... Essential Math for Data Science - Take Control of Your Data with Fundamental Linear Algebra, Probability, and Statistics (Paperback)
Thomas Nield
R1,310 R1,152 Discovery Miles 11 520 Save R158 (12%) Ships in 12 - 19 working days

To succeed in data science you need some math proficiency. But not just any math. This common-sense guide provides a clear, plain English survey of the math you'll need in data science, including probability, statistics, hypothesis testing, linear algebra, machine learning, and calculus. Practical examples with Python code will help you see how the math applies to the work you'll be doing, providing a clear understanding of how concepts work under the hood while connecting them to applications like machine learning. You'll get a solid foundation in the math essential for data science, but more importantly, you'll be able to use it to: Recognize the nuances and pitfalls of probability math Master statistics and hypothesis testing (and avoid common pitfalls) Discover practical applications of probability, statistics, calculus, and machine learning Intuitively understand linear algebra as a transformation of space, not just grids of numbers being multiplied and added Perform calculus derivatives and integrals completely from scratch in Python Apply what you've learned to machine learning, including linear regression, logistic regression, and neural networks

Getting Started with SQL (Paperback): Thomas Nield Getting Started with SQL (Paperback)
Thomas Nield
R796 R676 Discovery Miles 6 760 Save R120 (15%) Ships in 9 - 17 working days

Businesses are gathering data today at exponential rates and yet few people know how to access it meaningfully. If you're a business or IT professional, this short hands-on guide teaches you how to pull and transform data with SQL in significant ways. You will quickly master the fundamentals of SQL and learn how to create your own databases. Author Thomas Nield provides exercises throughout the book to help you practice your newfound SQL skills at home, without having to use a database server environment. Not only will you learn how to use key SQL statements to find and manipulate your data, but you'll also discover how to efficiently design and manage databases to meet your needs. You'll also learn how to: Explore relational databases, including lightweight and centralized models Use SQLite and SQLiteStudio to create lightweight databases in minutes Query and transform data in meaningful ways by using SELECT, WHERE, GROUP BY, and ORDER BY Join tables to get a more complete view of your business data Build your own tables and centralized databases by using normalized design principles Manage data by learning how to INSERT, DELETE, and UPDATE records

Learning RxJava - Build concurrent applications using reactive programming with the latest features of RxJava 3, 2nd Edition... Learning RxJava - Build concurrent applications using reactive programming with the latest features of RxJava 3, 2nd Edition (Paperback, 2nd Revised edition)
Nick Samoylov, Thomas Nield
R1,081 Discovery Miles 10 810 Ships in 10 - 15 working days

Updated with the latest Maven coordinates, Java programming features, and API changes, this book is your guide to solving problems in writing asynchronous and event-based programs Key Features Explore a variety of tools and techniques used to solve problems in implementing concurrency and parallelization Learn about core operators in RxJava that enable you to express your code logic productively Apply RxJava with Kotlin to create responsive Android apps with better user experience Book DescriptionRxJava is not just a popular library for building asynchronous and event-based applications; it also enables you to create a cleaner and more readable code base. In this book, you'll cover the core fundamentals of reactive programming and learn how to design and implement reactive libraries and applications. Learning RxJava will help you understand how reactive programming works and guide you in writing your first example in reactive code. You'll get to grips with the workings of Observable and Subscriber, and see how they are used in different contexts using real-world use cases. The book will also take you through multicasting and caching to help prevent redundant work with multiple Observers. You'll then learn how to create your own RxJava operators by reusing reactive logic. As you advance, you'll explore effective tools and libraries to test and debug RxJava code. Finally, you'll delve into RxAndroid extensions and use Kotlin features to streamline your Android apps. By the end of this book, you'll become proficient in writing reactive code in Java and Kotlin to build concurrent applications, including Android applications. What you will learn Discover different ways to create Observables, Observers, and Subscribers Multicast in order to push data to multiple destinations and cache and replay them Express RxJava idiomatically with the help of Kotlin features such as extension functions and data classes Become familiar with various operators available in RxJava to perform common transformations and tasks Explore RxJava's reactive types, including Flowable, Single, Maybe, and Completable Demystify Observables and how they express data and events as sequences Who this book is forThis book is for Java developers who want to leverage reactive programming to develop more resilient and concurrent applications. If you're an RxJava user looking to get to grips with the latest features and updates in RxJava 3, this book is for you. Fundamental knowledge of core Java features and object-oriented programming will assist you in understanding the key concepts covered in this book.

The Temple Harp (Paperback): Thomas Nield The Temple Harp (Paperback)
Thomas Nield
R626 Discovery Miles 6 260 Ships in 10 - 15 working days
Learning RxJava (Paperback): Thomas Nield Learning RxJava (Paperback)
Thomas Nield
R1,304 Discovery Miles 13 040 Ships in 10 - 15 working days

Reactive Programming with Java and ReactiveX About This Book * Explore the essential tools and operators RxJava provides, and know which situations to use them in * Delve into Observables and Subscribers, the core components of RxJava used for building scalable and performant reactive applications * Delve into the practical implementation of tools to effectively take on complex tasks such as concurrency and backpressure Who This Book Is For The primary audience for this book is developers with at least a fundamental mastery of Java. Some readers will likely be interested in RxJava to make programs more resilient, concurrent, and scalable. Others may be checking out reactive programming just to see what it is all about, and to judge whether it can solve any problems they may have. What You Will Learn * Learn the features of RxJava 2 that bring about many significant changes, including new reactive types such as Flowable, Single, Maybe, and Completable * Understand how reactive programming works and the mindset to "think reactively" * Demystify the Observable and how it quickly expresses data and events as sequences * Learn the various Rx operators that transform, filter, and combine data and event sequences * Leverage multicasting to push data to multiple destinations, and cache and replay them * Discover how concurrency and parallelization work in RxJava, and how it makes these traditionally complex tasks trivial to implement * Apply RxJava and Retrolambda to the Android domain to create responsive Android apps with better user experiences * Use RxJava with the Kotlin language to express RxJava more idiomatically with extension functions, data classes, and other Kotlin features In Detail RxJava is a library for composing asynchronous and event-based programs using Observable sequences for the JVM, allowing developers to build robust applications in less time. Learning RxJava addresses all the fundamentals of reactive programming to help readers write reactive code, as well as teach them an effective approach to designing and implementing reactive libraries and applications. Starting with a brief introduction to reactive programming concepts, there is an overview of Observables and Observers, the core components of RxJava, and how to combine different streams of data and events together. You will also learn simpler ways to achieve concurrency and remain highly performant, with no need for synchronization. Later on, we will leverage backpressure and other strategies to cope with rapidly-producing sources to prevent bottlenecks in your application. After covering custom operators, testing, and debugging, the book dives into hands-on examples using RxJava on Android as well as Kotlin. Style and approach This book will be different from other Rx books, taking an approach that comprehensively covers Rx concepts and practical applications.

Oliver Cromwell, Lord Protector of England - A Drama (Hardcover): Thomas Nield Oliver Cromwell, Lord Protector of England - A Drama (Hardcover)
Thomas Nield
R863 Discovery Miles 8 630 Ships in 10 - 15 working days
Oliver Cromwell - Lord Protector of England (Paperback): Thomas Nield Oliver Cromwell - Lord Protector of England (Paperback)
Thomas Nield
R629 Discovery Miles 6 290 Ships in 10 - 15 working days
The Human Brotherhood and a Psalm of Faith (Hardcover): Thomas Nield The Human Brotherhood and a Psalm of Faith (Hardcover)
Thomas Nield
R863 Discovery Miles 8 630 Ships in 10 - 15 working days
Manson's Vision; a Poem (Hardcover): Thomas Nield Manson's Vision; a Poem (Hardcover)
Thomas Nield
R936 Discovery Miles 9 360 Ships in 10 - 15 working days
The Human Brotherhood and a Psalm of Faith (Paperback): Thomas Nield The Human Brotherhood and a Psalm of Faith (Paperback)
Thomas Nield
R628 Discovery Miles 6 280 Ships in 10 - 15 working days
Oliver Cromwell, Lord Protector Of England - A Drama (1890) (Paperback): Thomas Nield Oliver Cromwell, Lord Protector Of England - A Drama (1890) (Paperback)
Thomas Nield
R672 Discovery Miles 6 720 Ships in 10 - 15 working days

This scarce antiquarian book is a selection from Kessinger Publishing's Legacy Reprint Series. Due to its age, it may contain imperfections such as marks, notations, marginalia and flawed pages. Because we believe this work is culturally important, we have made it available as part of our commitment to protecting, preserving, and promoting the world's literature. Kessinger Publishing is the place to find hundreds of thousands of rare and hard-to-find books with something of interest for everyone

Oliver Cromwell, Lord Protector Of England - A Drama (1890) (Paperback): Thomas Nield Oliver Cromwell, Lord Protector Of England - A Drama (1890) (Paperback)
Thomas Nield
R672 Discovery Miles 6 720 Ships in 10 - 15 working days
Free Delivery
Pinterest Twitter Facebook Google+
You may like...
Imtiaz Sooliman And The Gift Of The…
Shafiq Morton Paperback  (1)
R360 R332 Discovery Miles 3 320
Advances in Organometallic Chemistry…
Pedro J. Perez Hardcover R6,116 R5,119 Discovery Miles 51 190
Rebels And Rage - Reflecting On…
Adam Habib Paperback R589 Discovery Miles 5 890
Cuito Cuanavale - 12 Months Of War That…
Fred Bridgland Paperback  (4)
R320 R286 Discovery Miles 2 860
Win! - Compelling Conversations With 20…
Jeremy Maggs Paperback R491 Discovery Miles 4 910
Captain America
Jack Kirby, Joe Simon, … Paperback R610 R308 Discovery Miles 3 080
The Diamond Queen - Elizabeth II: The…
Andrew Marr Paperback R285 R258 Discovery Miles 2 580
Hiking Beyond Cape Town - 40 Inspiring…
Nina du Plessis, Willie Olivier Paperback R340 R314 Discovery Miles 3 140
65 Years Of Friendship
George Bizos Paperback  (2)
R391 Discovery Miles 3 910
Power And Loss In South African…
Glenda Daniels Paperback R380 R351 Discovery Miles 3 510

 

Partners