R

R is a free programming language and software environment for statistical computing and graphics. R has a wide variety of statistical linear and non-linear modeling and provides numerous graphical techniques.
Here are 18,288 public repositories matching this topic...
On the chapter about Editable DataTable
we can find this :
This chapter includes recipes for:
Reading the contents of the DataTable
Filtering out null values
Uploading data
Determining which cell has changed
Adding or removing columns
Adding or removing rows
Clearable, deletable, renamable, and hideable colum
Working on #2963 , I see two warnings generated when building the R package using MSVC.
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppBuild.targets(467,5):
warning MSB8029: The Intermediate directory or Output directory cannot reside under the Temporary directory as it could lead to issues with incremental build.
config.cpp
C:\
This project does seem to have specific examples of how to contribute on the docs
https://github.com/facebook/prophet/blob/master/docs/CONTRIBUTING.md
but not on how to contribute at the code level. Some examples for this are the following:
-
Updated
Oct 31, 2019
Small omission in the guide: it is implied in step 9 that a {}
literal should be parsed as a hash-map in the reader, but this is never explicitly stated earlier on. The sentence in question is: "This is basically the functional form of the {}
reader literal syntax".
This class could be used instead of cd file https://catboost.ai/docs/concepts/input-data_column-descfile.html when creating Pool from filez. The class should have init function, methods load and save, and Pool init method should be able to use object of this class instead of cd file during initialization.
-
Updated
Jun 11, 2020 - Jupyter Notebook
Color is listed as a parameter in the documentation for geom_tile
/geom_rect
/geom_raster
, but is ignored for geom_raster
. Based on the documentation and the behavior of other geoms, I would expect that color would be applied for geom_raster
.
library(ggplot2)
df <- expand.grid(x = 0:5, y = 0:5)
df$z <- runif(nrow(df))
ggplot(df, aes(x, y, fill = z)) + geom_raster(color = "blac
-
Updated
May 9, 2020 - R
This issue probably belongs in some other repo, and as part of some larger effort, but starting here.
- Visit https://shiny.rstudio.com/tutorial/
- Start watching the training video (https://vimeo.com/131218530)
- Try to turn on captions, there aren't any
- Ditto, no doubt, for many other such assets
We definitely need to be adding captions to any new video materials we produce; I'll be l
Hi all!,
Just want to share with the team some details I've been experiencing while I executed notebooks from command line using a yaml file.
First, let me show my case. I've bee parametrizing different notebooks to isolate data wranlging processes. To do it, I needed to use lists of dictionaries to specifiy keys describing my data, such as area or paths where some files were stored. As all
The opening code example is given as:
$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr
2 foo
1 bar
$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |
but should be:
$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr
2 foo
1 bar
$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |
-e switch is required for interpolating escaped \n. Without it, the example
In Section 3.5
The first argument of facet_wrap() should be a formula, which you create with ~ followed by a variable name (here “formula” is the name of a data structure in R, not a synonym for “equation”). The variable that you pass to facet_wrap() should be discrete.
However, the ggplot2 documentation for facet_wrap()
states that the formula interface is there for compatibility in fa
In a package project, if I create a vignette with
usethis::use_vignette("foo")
and then manually edit the YAML header of vignettes/foo.Rmd
to have
output:
rmarkdown::html_vignette:
keep_md: true
and then run
devtools::build_vignettes(keep_md = TRUE)
I get foo.Rmd
, foo.R
, and foo.html
files in doc/
, but no foo.md
.
This may be the desire
This is only a suggestion for improvement. It could be useful to have some method of converting existing .md
files to .Rmd
Rationale: anyone who made .md
files without .Rmd
and wants to convert them to .Rmd
will have a lot of copy/pasting ahead of them. Such a method could spare them that labour.
Although [a perfect conversion may not be
-
Updated
May 14, 2020
This is not an issue, but a recommendation.
I would like to suggest that in the docs available in the Rmarkdown book you include two examples in chapter 15 (parameterized reports):
- passing parameters as raw markdown text for the parameterized reports.
- setting the title using a parameter
This information is available in other parts of the book,
-
Updated
Aug 19, 2019 - R
Just a quick note that the link to the new style guide (on this page: http://adv-r.had.co.nz/Style.html) is incorrect - it links to the advanced R index (https://adv-r.hadley.nz/index.html) rather than to the new style guide (https://style.tidyverse.org/).
Thank you for your patience - I'm a little rusty with my Githubbing or I'd submit a push request.
Many times when I search for some R plotly documentation, I come across a page with a broken shiny app, which essentially renders that page useless. I usually ignored it, but I realize now that it would have been much more productive to make note and report it! So I'll start now :)
The app here doesn't exist: https://plot.ly/r/shinyapp-linked-click/
- It would be nice to have a list of current contributors and update this list as more people add resources to this repo.
I'm sorry if I missed this functionality, but CLI
version hasn't it for sure (I saw the related code only in generate_code_examples.py
). I guess it will be very useful to eliminate copy-paste phase, especially for large models.
Of course, piping is a solution, but not for development in Jupyter Notebook, for example.
-
Updated
Apr 18, 2018 - R
-
Updated
May 29, 2020 - R
-
Updated
May 27, 2020 - HTML
Created by Ross Ihaka, Robert Gentleman
Released August 1993
- Website
- www.r-project.org
- Wikipedia
- Wikipedia
Does Truffle support making a programming language in a new character set?
This is with reference to this question. My understanding is tha