<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Mon, 27 Apr 2026 15:45:46 +0200 -->

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Web Links - STHDA : eBook]]></title>
		<atom:link href="https://www.sthda.com/english/syndication/rss/web/7" rel="self" type="application/rss+xml"/>
		<link>https://www.sthda.com</link>
		<description><![CDATA[Web Links - STHDA : eBook]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>en</language>
		<generator>PHPBoost</generator>
		
		
		<item>
			<title><![CDATA[An Introduction to Statistical and Data Sciences via R]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/36-an-introduction-to-statistical-and-data-sciences-via-r/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/36-an-introduction-to-statistical-and-data-sciences-via-r/</guid>
			<description><![CDATA[This book assumes no prerequisites: no algebra, no calculus, and no prior programming/coding experience. This is intended to be a gentle introduction to the practice of analyzing data and answering questions using data the way data scientists, statisticians, data journalists, and other researchers would.<br />
<br />
This book will help you develop your “data science toolbox”, including tools such as data visualization, data formatting, data wrangling, and data modeling using regression.]]></description>
			<pubDate>Sat, 05 Aug 2017 10:53:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Plotly for R Book]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/26-plotly-for-r-book/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/26-plotly-for-r-book/</guid>
			<description><![CDATA[This website explains and partially documents the R package plotly, a high-level interface to the open source JavaScript graphing library plotly.js (which powers plot.ly).<br />
<br />
The R package already has numerous examples and documentation on <a href="https://plot.ly/r">https://plot.ly/r</a> and <a href="https://plot.ly/ggplot2,">https://plot.ly/ggplot2,</a> but this website provides more of a cohesive narrative to help explain fundamental concepts and recent developments.<br />
<br />
By reading from start to finish, readers new to R and plotly should be able to get up and running fairly quickly.<br />
<br />
That being said, advanced R and plotly users should still find the majority of this material useful and informative.]]></description>
			<pubDate>Wed, 02 Aug 2017 16:19:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[blogdown: Creating Websites with R Markdown]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/23-blogdown-creating-websites-with-r-markdown/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/23-blogdown-creating-websites-with-r-markdown/</guid>
			<description><![CDATA[This book introduces the <strong>blogdown</strong> R package to create <strong>websites</strong> using R Markdown and Hugo. There are two major highlights of blogdown:<br />
<br />
1) It produces a static website, meaning the website only consists of static files such as HTML, CSS, JavaScript, and images, etc. You can host the website on any web servers. The website does not require server-side scripts such as PHP or databases like WordPress does.<br />
<br />
2) The website is generated from R Markdown documents. This brings a huge amount of benefits, especially if your website is related to data analysis or (R) programming. Being able to use Markdown implies simplicity and more importantly, portability (e.g., you are giving yourself the chance to convert your blog posts to PDF and publish to journals or even books in the future).<br />
<br />
R Markdown gives you the benefits of dynamic documents — all your results, such as tables, graphics, and inline values, can be computed and rendered dynamically from R code, hence the results you present on your website are more likely to be reproducible.<br />
<br />
Author: Yihui Xie, Amber Thomas, Alison Presmanes Hill]]></description>
			<pubDate>Tue, 01 Aug 2017 21:08:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[bookdown: Create Books and Technical Documents with R Markdown]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/22-bookdown-create-books-and-technical-documents-with-r-markdown/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/22-bookdown-create-books-and-technical-documents-with-r-markdown/</guid>
			<description><![CDATA[This book introduces an R package, <strong>bookdown</strong>, to change your workflow of writing books.<br />
<br />
With bookdown,<br />
<br />
- It should be technically easy to write a book,<br />
<br />
-  visually pleasant to view the book,<br />
<br />
- fun to interact with the book,<br />
<br />
- convenient to navigate through the book,<br />
<br />
- straightforward for readers to contribute or leave feedback to the book author(s),<br />
<br />
- and more importantly, authors should not always be distracted by typesetting details.<br />
<br />
<br />
Despite the package name containing the word “book”, bookdown is not only for books.<br />
<br />
The “book” can be anything that consists of multiple R Markdown documents meant to be read in a linear sequence, such as course handouts, study notes, a software manual, a thesis, or even a diary.<br />
<br />
Author: Yihui Xie]]></description>
			<pubDate>Tue, 01 Aug 2017 21:01:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[R Packages]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/21-r-packages/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/21-r-packages/</guid>
			<description><![CDATA[This book will teach you how to create an R package.<br />
<br />
Contents:<br />
<br />
1. Getting started<br />
    - Introduction<br />
    - Package structure<br />
   <br />
2. Package components<br />
    - Code (R/)<br />
    - Package metadata (DESCRIPTION)<br />
    - Object documentation (man/)<br />
    - Vignettes (vignettes/)<br />
    - Testing (tests/)<br />
    - Namespaces (NAMESPACE)<br />
    - Data (data/)<br />
    - Compiled code (src/)<br />
    - Installed files (inst/)<br />
    - Other components<br />
   <br />
3. Best practices<br />
    - Git and GitHub<br />
    - Checking<br />
    - Release]]></description>
			<pubDate>Tue, 01 Aug 2017 17:43:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[R for Data Science]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/20-r-for-data-science/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/20-r-for-data-science/</guid>
			<description><![CDATA[This book will teach you how to do data science with R: You’ll learn how to get your data into R, get it into the most useful structure, transform it, visualise it and model it. In this book, you will find a practicum of skills for data science.<br />
<br />
Just as a chemist learns how to clean test tubes and stock a lab, you’ll learn how to clean data and draw plots—and many other things besides. These are the skills that allow data science to happen, and here you will find the best practices for doing each of these things with R.<br />
<br />
 You’ll learn how to use the grammar of graphics, literate programming, and reproducible research to save time.<br />
<br />
You’ll also learn how to manage cognitive resources to facilitate discoveries when wrangling, visualising, and exploring data.<br />
<br />
Author: Garrett Grolemund &amp; Hadley Wickham]]></description>
			<pubDate>Tue, 01 Aug 2017 17:38:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Advanced R]]></title>
			<link>https://www.sthda.com/english/web/7-ebook/19-advanced-r/</link>
			<guid>https://www.sthda.com/english/web/7-ebook/19-advanced-r/</guid>
			<description><![CDATA[The book is designed primarily for R users who want to improve their programming skills and understanding of the language. It should also be useful for programmers coming to R from other languages, as it explains some of R’s quirks and shows how some parts that seem horrible do have a positive side.<br />
<br />
What you will get out of this book:<br />
<br />
After reading this book, you will:<br />
<br />
1) Be familiar with the fundamentals of R. You will understand complex data types and the best ways to perform operations on them. You will have a deep understanding of how functions work, and be able to recognise and use the four object systems in R.<br />
<br />
2) Understand what functional programming means, and why it is a useful tool for data analysis.<br />
<br />
3) You’ll be able to create functions that use non-standard evaluation in a principled way, saving typing and creating elegant code to express important operations.<br />
<br />
4) Have a good intuition for which operations in R are slow or use a lot of memory. You’ll know how to use profiling to pinpoint performance bottlenecks, and you’ll know enough C++ to convert slow R functions to fast C++ equivalents.<br />
<br />
5) Be comfortable reading and understanding the majority of R code.<br />
<br />
Author: Hadley Wickham]]></description>
			<pubDate>Tue, 01 Aug 2017 17:27:00 +0200</pubDate>
			
		</item>
		
	</channel>
</rss>
