Skip to content
#

R

r logo

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 16,758 public repositories matching this topic...

dash
jameslamb
jameslamb commented Sep 29, 2019

One unit test in the R package is currently broken. Steps to reproduce on Mac

export CXX=/usr/local/bin/g++-8 CC=/usr/local/bin/gcc-8
Rscript build_r.R
cd R-package/tests
Rscript testthat.R

This results in the following error at the ends of the logs

[LightGBM] [Info] Saving data to binary file /var/folders/xq/wktq4zdx4jd3qdpk34d28m940000gn/T//RtmpiY1DzV/lgb.Dataset_1555
DBCerigo
DBCerigo commented Dec 3, 2019

I'm not using interactive plots, but thefbprophet logger logs the above error at the time prophet is imported. This creates unnecessary noise in application logging.

Is there anyway I can suppress that error? (I still want to propagate other logs from fbprophet.)

Link to line for ref: https://github.com/facebook/prophet/blob/83f66dadfd8f127687aa1d6e88cf153fff963fc7/python/fbprophet/pl

dennislamcv1
dennislamcv1 commented Dec 20, 2019

Problem: Request for a Catboost Tutorial for Regression problems
catboost version: Any version
Operating System: WIndows
CPU: i7

GPU: None

Hi Yandex, I am currently learning how to use Catboost for ML projects. Would love to have a tutorial on Regression problems using real data set consists of mixture of categorical and numerical features.

Please do not use those generic datasets like

Open Source Fast Scalable Machine Learning Platform For Smarter Applications: Deep Learning, Gradient Boosting & XGBoost, Random Forest, Generalized Linear Modeling (Logistic Regression, Elastic Net), K-Means, PCA, Stacked Ensembles, Automatic Machine Learning (AutoML), etc.

  • Updated Feb 18, 2020
  • Java
fabiangehring
fabiangehring commented Jul 22, 2019

hi,
the documentation of shiny::Progress says

initialize(session, min = 0, max = 1)
Creates a new progress panel (but does not display it).

Nevertheless it seems as if already the simple creation of a progress object (p<- Progress$new()) shows the Notification "message" without calling p$set(...) first.

here a very minimal example showing an undesired "message" notification.

``

hadley
hadley commented Jan 15, 2020

One table:

  • arrange(df, x) -> df[order(x), , drop = FALSE]
  • distinct(df, x) -> df[!duplicated(x), , drop = FALSE]; unique()
  • filter(df, x) -> df[x & !is.na(x), , drop = FALSE]; subset()
  • mutate(df, z = x + y) -> df$z <- df$x + df$y; transform()
  • pull(df, x) -> df$x
  • rename(df, y = x) -> ?
  • select(df, x, y) -> df[c("x", "y")], subset()
  • `select(df,
philip-khor
philip-khor commented Dec 21, 2019

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

DaveJarvis
DaveJarvis commented Jul 8, 2019

Currently the knit function specifies an output path that may include a directory, such as:

knit( "filename.Rmd", "build/filename.md" )

Being able to specify the output directory alone would be convenient when knitting multiple files. Such as:

knit( "01.Rmd", "build/" )
knit( "02.Rmd", "build/" )

This would produce ./build/01.md and ./build/02.md, thereby eli

nettoyoussef
nettoyoussef commented Oct 11, 2019

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,

StrikerRUS
StrikerRUS commented Oct 18, 2019

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.

HerrMo
HerrMo commented Mar 8, 2019

Hi,

in the docu of getTaskData it says under recode.target: "For survival, you may choose to recode the survival times to 'left', 'right' or 'interval2' censored times using 'lcens', 'rcens' or 'icens', respectively."
This is not consistent with the implementation. If one of these options is chosen, e.g.recode.target = "rcens", an error occurs. Instead, recode.traget = "surv" works. See

richardbeare
richardbeare commented Dec 5, 2016

Hi,
Apologies if this is off topic. I'm struggling to find information about this. Is there any equivalent of ipywidgets allowing basic feedback to R? I'm aware of the likes of plotly and htmlwidgets, but have not been able to identify any mechanism for providing data back to R. There are some comments around the release of ipywidgets 5.0 claiming that recent refactoring is designed to make writi

Created by Ross Ihaka, Robert Gentleman

Released August 1993

Website
www.r-project.org
Wikipedia
Wikipedia

Related Topics

language
You can’t perform that action at this time.