search for: tr7320

Displaying 10 results from an estimated 10 matches for "tr7320".

Did you mean: 7320
2019 Feb 20
1
Documentation for sd (stats) + suggestion
Good day, It is implemented by the CRAN package multicon. The function is named popsd. But it does seem like something R should provide without creating a package dependency. -------------------------------------- Dario Strbenac University of Sydney Camperdown NSW 2050 Australia
2020 Mar 23
0
Grid pmax Unusual Result In Alpha Version
Sorry, I was dragging the laptop's cursor towards the Discard button but it activated on Send instead. Please ignore or delete from mailing archive. ________________________________________ From: Martin Maechler <maechler at stat.math.ethz.ch> Sent: Monday, 23 March 2020 11:10 PM To: Dario Strbenac Subject: Re: [Rd] Grid pmax Unusual Result In Alpha Version >>>>> Dario
2020 Mar 27
0
Possibility of Less Verbose Stack Trace
Good day, Is there a setting the user can change to make R CMD check stack traces output less and make it easier to spot the line of code that's the problem? I use R Under development. Part of the trace I see looks like: --- R stacktrace --- where 1: .local(model, test, ...) where 2: (new("nonstandardGenericFunction", .Data = function (model, test, ...) {
2023 Apr 29
1
save.image Non-responsive to Interrupt
Hello, Could save.image() be redesigned so that it promptly responds to Ctrl+C? It prevents the command line from being used for a number of hours if the contents of the workspace are large. -------------------------------------- Dario Strbenac University of Sydney Camperdown NSW 2050 Australia
2024 May 21
1
confint Attempts to Use All Server CPUs by Default
Hello, Would a less resource-intensive value, such as 1, be a safer default CPU value for confint? I noticed excessive CPU usage on a I.T. administrator-managed server which was being three-quarters used by another staff member when the confidence interval calculation in an R Markdown document suddenly changed from two seconds to ninety seconds because of competition for CPUs between users. Also,
2024 Dec 17
0
stats glm Response Format Ambiguity
Hello, Could there be clarification added to glm's documentation? In contrast, glmnet leaves no ambiguity about what it expects for response. glm: y: is a vector of observations of length n glmnet: y: For family="binomial" should be either a factor with two levels, or a two-column matrix of counts or proportions (the second column is treated as the target class). For
2018 Jul 19
2
Library lib.loc Option Ignored for Dependencies
Good day, If there's a library folder of the latest R packages and a particular package from it is loaded using the lib.loc option, the dependencies of that package are still attempted to be loaded from another folder of older packages specified by R_LIBS, which may cause errors about version requirements not being met. The documentation of the library function doesn't explain what the
2018 Jun 14
2
makeCluster Stall on 32-bit Windows
Good day, I'm trying the example cl <- makeCluster(2, type = "SOCK") from the makeCluster documentation and the R command prompt never returns. I am using a 32-bit Windows 10 computer. The problem doesn't happen on another 64-bit Windows 10 computer but does happen on another 32-bit Windows 7 computer. Can anyone reproduce it? Are there any other options that can be passed to
2018 Jun 18
1
Automatic Compression by Save Causes Check Warning
Good day, Save sometimes chooses a compression method which causes a warning during package checking. An example of this is: measurements <- matrix(round(rnorm(2000*190), 2), nrow = 2000, ncol = 190) classes <- factor(sample(LETTERS[1:2], 190, replace = TRUE)) save(measurements, classes, file = "data/experiment.RData") then, when the package is checked, * checking data for
2018 Sep 20
3
A different error in sample()
Good day, The use of "rounding" also doesn't make sense. If The number is halfway between two integers, it is rounded to the nearest even integer. > round(2.5) [1] 2 -------------------------------------- Dario Strbenac University of Sydney Camperdown NSW 2050 Australia