ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب R Programming for Data Science

دانلود کتاب برنامه نویسی R برای علم داده

R Programming for Data Science

مشخصات کتاب

R Programming for Data Science

ویرایش: 1 
نویسندگان:   
سری:  
ISBN (شابک) : 1365056821, 9781365056826 
ناشر: lulu.com 
سال نشر: 2016 
تعداد صفحات: 184 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 6 مگابایت 

قیمت کتاب (تومان) : 55,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 15


در صورت تبدیل فایل کتاب R Programming for Data Science به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب برنامه نویسی R برای علم داده نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب برنامه نویسی R برای علم داده

علم داده جهان را طوفان کرده است. هر زمینه تحصیلی و حوزه کسب و کار تحت تأثیر قرار گرفته است زیرا مردم به طور فزاینده ای به ارزش مقادیر باورنکردنی داده های تولید شده پی می برند. اما برای استخراج ارزش از این داده ها، باید در مهارت های علم داده مناسب آموزش دید. زبان برنامه نویسی R تبدیل به زبان برنامه نویسی واقعی برای علم داده شده است. انعطاف‌پذیری، قدرت، پیچیدگی و بیان آن، آن را به ابزاری ارزشمند برای دانشمندان داده در سراسر جهان تبدیل کرده است. این کتاب در مورد اصول برنامه نویسی R است. شما با اصول اولیه زبان شروع خواهید کرد، نحوه دستکاری مجموعه داده ها، نحوه نوشتن توابع، و نحوه اشکال زدایی و بهینه سازی کد را یاد خواهید گرفت. با اصول ارائه شده در این کتاب، شما پایه محکمی خواهید داشت که می توانید جعبه ابزار علم داده خود را بر اساس آن بسازید.


توضیحاتی درمورد کتاب به خارجی

Data science has taken the world by storm. Every field of study and area of business has been affected as people increasingly realize the value of the incredible quantities of data being generated. But to extract value from those data, one needs to be trained in the proper data science skills. The R programming language has become the de facto programming language for data science. Its flexibility, power, sophistication, and expressiveness have made it an invaluable tool for data scientists around the world. This book is about the fundamentals of R programming. You will get started with the basics of the language, learn how to manipulate datasets, how to write functions, and how to debug and optimize code. With the fundamentals provided in this book, you will have a solid foundation on which to build your data science toolbox.



فهرست مطالب

Table of Contents
Stay in Touch!
Preface
History and Overview of R
	What is R?
	What is S?
	The S Philosophy
	Back to R
	Basic Features of R
	Free Software
	Design of the R System
	Limitations of R
	R Resources
Getting Started with R
	Installation
	Getting started with the R interface
R Nuts and Bolts
	Entering Input
	Evaluation
	R Objects
	Numbers
	Attributes
	Creating Vectors
	Mixing Objects
	Explicit Coercion
	Matrices
	Lists
	Factors
	Missing Values
	Data Frames
	Names
	Summary
Getting Data In and Out of R
	Reading and Writing Data
	Reading Data Files with read.table()
	Reading in Larger Datasets with read.table
	Calculating Memory Requirements for R Objects
Using the readr Package
Using Textual and Binary Formats for Storing Data
	Using dput() and dump()
	Binary Formats
Interfaces to the Outside World
	File Connections
	Reading Lines of a Text File
	Reading From a URL Connection
Subsetting R Objects
	Subsetting a Vector
	Subsetting a Matrix
	Subsetting Lists
	Subsetting Nested Elements of a List
	Extracting Multiple Elements of a List
	Partial Matching
	Removing NA Values
Vectorized Operations
	Vectorized Matrix Operations
Dates and Times
	Dates in R
	Times in R
	Operations on Dates and Times
	Summary
Managing Data Frames with the dplyr package
	Data Frames
	The dplyr Package
	dplyr Grammar
	Installing the dplyr package
	select()
	filter()
	arrange()
	rename()
	mutate()
	group_by()
	%>%
	Summary
Control Structures
	if-else
	for Loops
	Nested for loops
	while Loops
	repeat Loops
	next, break
	Summary
Functions
	Functions in R
	Your First Function
	Argument Matching
	Lazy Evaluation
	The ... Argument
	Arguments Coming After the ... Argument
	Summary
Scoping Rules of R
	A Diversion on Binding Values to Symbol
	Scoping Rules
	Lexical Scoping: Why Does It Matter?
	Lexical vs. Dynamic Scoping
	Application: Optimization
	Plotting the Likelihood
	Summary
Coding Standards for R
Loop Functions
	Looping on the Command Line
	lapply()
	sapply()
	split()
	Splitting a Data Frame
	tapply
	apply()
	Col/Row Sums and Means
	Other Ways to Apply
	mapply()
	Vectorizing a Function
	Summary
Regular Expressions
	Before You Begin
	Primary R Functions
	grep()
	grepl()
	regexpr()
	sub() and gsub()
	regexec()
	The stringr Package
	Summary
Debugging
	Something’s Wrong!
	Figuring Out What's Wrong
	Debugging Tools in R
	Using traceback()
	Using debug()
	Using recover()
	Summary
Profiling R Code
	Using system.time()
	Timing Longer Expressions
	The R Profiler
	Using summaryRprof()
	Summary
Simulation
	Generating Random Numbers
	Setting the random number seed
	Simulating a Linear Model
	Random Sampling
	Summary
Data Analysis Case Study: Changes in Fine Particle Air Pollution in the U.S.
	Synopsis
	Loading and Processing the Raw Data
	Results
Parallel Computation
	Hidden Parallelism
	Embarrassing Parallelism
	The Parallel Package
	Example: Bootstrapping a Statistic
	Building a Socket Cluster
	Summary
Why I Indent My Code 8 Spaces
About the Author




نظرات کاربران