Skip to content
#

rstats

Here are 2,547 public repositories matching this topic...

dash
gganimate
abhsarma
abhsarma commented Mar 18, 2020

I really appreciate the work that you've put into engineering it so that we can create animated plots in R, but I would really appreciate if you could document examples (in the form of vignettes), and describe in more details the terms and metaphors used. I've been trying to use the gganimate package but I have been facing some problems with understanding what some of the terms / metaphors used in

hrbrmstr
hrbrmstr commented Mar 13, 2020

Many of the issues filed for this package are unsurprisingly font related.

To help alleviate or even prevent these issues, the package needs:

  • better documentation on fonts
  • platform-specific helpers for installation & triage
  • robust platform detection (down to version & patch level) to ensure the right font names are used on the right platform since legacy operating systems like Windo
ggrepel
davidchall
davidchall commented Dec 12, 2019

The documentation of the nudge options does not specify the units of these values. It would help new users to clarify this.

They are probably in the same units as the data values for these axes? But they might’ve been relative units for the plotted axis (e.g. 0.5 would nudge the position by half of the axis length), or even absolute units for the plot (like the units for many of the other opti

sparklyr
scworland
scworland commented Jan 23, 2019

The "components" returned from ml_pca() are NULL

# example
sc <- spark_connect(master = "local")
iris_tbl <- sdf_copy_to(sc, iris, name = "iris_tbl", overwrite = TRUE)

pca <- iris_tbl %>%
  select(-Species) %>%
  ml_pca()

pca$components
NULL

R session information:

devtools::session_info()
Session info -----------------------------------------------------------
ggforce
Myles12345
Myles12345 commented Mar 24, 2017

When paginating a faceted plot that has an odd number of plots, so the last page's plots do not fill that page - I find that the ggplot title that is centered over the page, becomes centered over the remaining plots on the last page.

Code:

n_pages <- ceiling(length(levels(diamonds$cut)) * length(levels(diamonds$clarity)) / 3)

# Draw each page
for (i in seq_len(n_pages)) {
  p
usethis
isteves
isteves commented Jul 8, 2019

Currently, use_tutorial() places learnr in "Suggests", which is ideal for package developers who want to include learnr tutorials as documentation.

In a teaching context, it is often more important to reduce user friction than to reduce dependencies. Thus, we'd like to create a "heavyweight"/learner-friendly option for use_tutorial() that would do the following:

  1. place learnr in
vitae
gorkang
gorkang commented May 29, 2019

When hitting "Send Regex To Console" in the Output tab, the console shows something like the following:

pattern <- "\w+ " # perl=TRUE
replacement <- "NO "

Wouldn't be better to integrate the parameters into the actual function used? In this case, it could translate into:

sub(pattern = "\w+",
replacement = "NO ",
x = readr::read_file("LICENSE"),
perl

pseudotensor
pseudotensor commented Oct 8, 2017

The basic idea is to have a metrics package, we can start with ROC/AUC (first on GPU, then if necessary on CPU). It should mimic the SKLearn API and results:

http://scikit-learn.org/stable/modules/generated/sklearn.metrics.roc_auc_score.html

Requirements:

  1. GPU implementation. It can use Thrust and other libraries as first step.
  2. Bindings for other languages (currently CTypes but soo
premadh
premadh commented Sep 17, 2019

This is a suggested code or documentation change, improvement to the code, or feature request

The package is great works in most conditions (many thanks for this) but also makes lazy that I don't want to wrangle misread pdf pages. Hence, I'd like to request below.

Provide a parameter/method to specify the number of columns; start and end co-ordinates of each column so that table is extracted

friendly
friendly commented Jan 21, 2019

A nice & potentially useful package, but w/o more detailed description of the parameters and their ranges, one is left to guess what they might be, and then iterate to find something that works.

p_x, p_y, s_x, s_y, s_height, s_width, ... ? What is the frame of reference for *_x., *_y positions? What is the relation of *_height, *_width to this?

Improve this page

Add a description, image, and links to the rstats topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rstats topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.