Displaying 20 results from an estimated 20000 matches similar to: "Export tools:::analyze_license()?"
2007 Mar 27
0
Error when calling residual.plots() on an ANOVA object
Dear *,
I have to perform an ANOVA analysis to study the effects on the
performance of some algorithmic components in the design of my
algorithm.
I have done a full factorial design for the following 5 factors (my
response variable is "best"):
$ model :'data.frame': 3360 obs. of 6 variables:
..$ best : num [1:3360] 0.108 0.573 0.625 1.057 0.451 ...
2000 Jul 12
1
Samba + WAN?
Dear Ladies and Gentlemen!
On a CD-ROM-server at the University Koblenz-Landau we are
using Samba (2.0.5a) with Red Hat Linux (6.0, Kernel 2.2.5).
The server is located here in Koblenz, but also used from
another department of the university at Landau (about 80 miles
from Koblenz; they have their own class B network).
A traceroute from both locations gave a response time of about 10-50
msec.
On
2010 Jul 27
3
Checking package licences including dependencies?
I only recently discovered options("available_packages_filters" =
list(add = TRUE, "license/FOSS")) [cf. help("available.packages",
package="utils") in R 2.10.0 or later] which goes nicely with my
options("checkPackageLicense" = TRUE) [new in R 2.11].
But now I want to purge my library of packages I would not have
installed had I known about
2020 Oct 22
0
openSTARS version 1.2.2 on CRAN
Dear R community
There is a new version of the openSTARS package (preparing GIS data for
stream analysis) available on CRAN.
Major updates are:
- catch errors arising in GRASS 7.8 due to changes in v.to.db
- update setup_grass_environment; there is no need any more to initGRASS
before
Please also find a detailed description of the package including example
code here:
2017 Aug 10
0
New Package: openSTARS
Dear userRs
I am pleased to announce the release of the new package *openSTARS* on
CRAN (https://cran.r-project.org/web/packages/openSTARS/index.html).
openSTARS prepares GIS data for stream network analysis using open
source GRASS GIS within R. It is intended as an alternative to the
ArcGIS toolbox STARS to format the input data for the SSN package for
Spatial Statistical Modeling on Stream
2019 Nov 22
0
Patch idea: an environment variable for setting the user ID
Another thing to consider if one wants to anonymize the build is the
UID/GID of the files in the tarball. So there might be a need for a
R_BUILD_UID and R_BUILD_GID, e.g. by setting those to 32767
("nobody").
/Henrik
On Fri, Jan 25, 2019 at 9:25 AM Will L <will.landau at gmail.com> wrote:
>
> Thanks, Kurt.
>
> I think I now have enough time to write a patch. What are
2017 Aug 10
0
New Package: openSTARS
Dear userRs
I am pleased to announce the release of the new package *openSTARS* on
CRAN (https://cran.r-project.org/web/packages/openSTARS/index.html).
openSTARS prepares GIS data for stream network analysis using open
source GRASS GIS within R. It is intended as an alternative to the
ArcGIS toolbox STARS to format the input data for the SSN package for
Spatial Statistical Modeling on Stream
2014 Jun 05
0
Note: information on .o files is not available
I'm developing an R package with compiled code in CUDA C/C++. I ran R CMD
check on it, and there are no errors or warnings. However, there is a note
that reads, "Note: information on .o files is not available". What does this
mean? I can't find any clues on the web, in the documentation, or in the
source of the devtools package.
Here is the full output of my R CMD check.
*
2017 Sep 17
0
FW: CRAN check errors: drake 4.1.0 on r-devel-linux-x86_64-debian-clang
Hello,
The CRAN checks for the drake package (4.1.0) fail for r-devel-linux-x86_64-debian-clang. This happened right when crayon 1.3.4 was released, but I suspect the problem is not with crayon or drake, but with base R-devel. I cannot reproduce the error myself, but I have copied a minimal working example (MWE) below that should theoretically isolate the problem.
`find_namespaced_functions()`
2016 Mar 21
0
transfer FSMO roles from Windows DC
On 21/03/16 15:44, Landau Daniil wrote:
> I have the Active Directory domain with Windows 2008 R2 domain controller and Samba domain controller on CentOS 7. Samba is 4.3.5 (self-compiled). Forest and domain levels are Windows 2008 R2.
> After joining Samba to the domain as the domain controller there were no DC=ForestDnsZones and DC=DomainDnsZones records on "OUTBOUND NEIGHBORS". I
2018 Nov 11
2
Patch idea: an environment variable for setting the user ID
To R-devel,
In `R CMD build`, the ID of the user is automatically inserted into the
DESCRIPTION file, e.g.
Packaged: 2018-11-06 14:01:50 UTC; <MY USER ID>
This is problematic for those of us who work in corporate settings. We must
not divulge our user IDs in the packages we develop and release.
Jim Hester pointed out that these two lines in
`add_build_stamp_to_description_file()`
2018 May 18
1
Samba 4.8.2
On Fri, 18 May 2018 15:24:50 +0200
Micha Ballmann <ballmann at uni-landau.de> wrote:
> Thx,
>
> all samba server were compiled from source.
>
In which case, download the Samba tarball and unpack it, cd into the
directory created by the unpacking, check if you require any extra
packages and install them. Run configure with exactly the same options
as you did previously. If
2025 Mar 30
1
[External] Creating model formulas programmatically
I am confused. Richard's answer that Bert did not like did not use parse explicitly. Richard pasted together a string that a function like lm() will have to parse to run the analysis. However, the answers so far do not use parse(). In the reply to Richard, Bert indicated we cannot use strings. Even if I pass a vector where R can assume that the first variable is the dependent variable and all
2025 Mar 29
1
[External] Creating model formulas programmatically
The general formula is y ~ a + b + c + ...
There is this approach:
formula <- reformulate(independent_vars, response = "y")
model <- lm(formula, data = mydata)
summary(model)
It does not generate a string object, but the formula is still a string even if it is of class formula. Also, in this approach you only get + and if you want interactions or such you will need to code them
2019 Jan 25
2
Patch idea: an environment variable for setting the user ID
Thanks, Kurt.
I think I now have enough time to write a patch. What are the steps? I have
read https://www.r-project.org/bugs.html#how-to-submit-patches but I do not
seem to have permission to create a Bugzilla account at
https://bugs.r-project.org/bugzilla/.
Will
On Mon, Nov 12, 2018 at 2:46 AM Kurt Hornik <Kurt.Hornik at wu.ac.at> wrote:
> >>>>> Will L writes:
>
2025 Mar 30
1
[External] Creating model formulas programmatically
As always, I would like to thank all who responded for their insights and
suggestions. I have learned from them.
Thus far, my own aesthetic preference -- and therefore not to be considered
in any sense as a "best" approach -- is to use Duncan's suggestion to
produce the call directly with call() rather than substitute in my simple
for() loop; i.e.
somenames <-
2025 Mar 30
1
[External] Creating model formulas programmatically
Hello,
I thought of answering "reformulate can solve the problem" but how do
you create quadratic terms with reformulate?
~(Heigh + Ho + Silver + Away)^2
is still a problem with no solution that I know of but paste/as.formula.
Or Bert's bquote or substitute.
Rui Barradas
?s 23:18 de 29/03/2025, Ebert,Timothy Aaron escreveu:
> The general formula is y ~ a + b + c + ...
>
2006 Jan 16
4
Standardized beta-coefficients in regression
Hello list,
I am used to give a lot of attention to the standardized regression
coefficients, which in SPSS are listed automatically.
Is there alternative to running the last two lines in the following example to
get all the information?
ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
summary( lm(ctl ~ trt) )
2013 Aug 19
0
[LLVMdev] Generating GetElementPtr inlined in a function argument list programmatically
On Aug 19, 2013, at 14:26 , chentommy <baiypwup at hotmail.com> wrote:
> Hello LLVMDev List,
>
>
> It's my first time sending a message to the List - I have been working on a tool for my research project using LLVM. Thanks for your awesome work!
>
> I have come across some bytecode like the following with an GetElementPtr instruction in brackets:
>
>
2004 Aug 06
1
Transition to IceCast 2
I'm trying to migrate to icecast2 from 1.3.12, and having a bit of
trouble with the admin interface.
I have a need to programmatically control icecast, including dumping the
stream to a file, among other things.
Under the old icecast, it was relatively easy to open a socket to port
8000 on the icecast server and programmatically interact with the admin
console.
I can't seem to get it to