Displaying 20 results from an estimated 80 matches for "help&data".
2023 Apr 07
2
R does not run under latest RStudio
...ease call phone number above prior to faxing)
On Apr 6, 2023, at 5:30 PM, David Winsemius <dwinsemius at comcast.net> wrote:
?
On 4/6/23 03:49, Steven Yen wrote:
The RStudio list generally does not respond to free version users. I was hoping someone one this (R) list would be kind enough to help me.
I don't think that is true. It is perhaps true that you cannot get personalized help from employed staff, but you can certainly submit to the Q&A forum.
--
David
Steven from iPhone
On Apr 6, 2023, at 6:22 PM, Uwe Ligges <ligges at statistik.tu-dortmund.de> wrote:
?No, but...
2023 Jan 15
2
Removing variables from data frame with a wile card
...k of presenting something that has been shown before, below I demonstrate how a column in a data frame can be dropped using a wild card, i.e. a column whose name starts with "th" using nothing more than base r functions and base R syntax. While additions to R such as tidyverse can be very helpful, many things that they do can be accomplished simply using base R.
# Create data frame with three columns
one <- rep(1,10)
one
two <- rep(2,10)
two
three <- rep(3,10)
three
mydata <- data.frame(one=one, two=two, three=three)
cat("Data frame with three columns\n")
mydata...
2017 Aug 22
1
Convert Factor to Date
...g-15 1-Aug-16
Sep-15 1-Aug-16
Oct-15 1-Aug-16
Nov-15 1-Aug-16
Dec-15 1-Aug-16
Jan-16 1-Aug-16
Feb-16 1-Aug-16
Mar-16 1-Aug-16
Apr-16 1-Aug-16
May-16 1-Aug-16
Jun-16 1-Aug-16
Jul-16 1-Aug-16
Aug-16 1-Aug-16
Sep-16 1-Aug-16
Oct-16 1-Aug-16
________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Spencer Graves <spencer.graves at effectivedefense.org>
Sent: Tuesday, August 22, 2017 2:49 PM
To: r-help at r-project.org
Subject: Re: [R] Convert Factor to Date
On 2017-08-22 1:30 PM, Patrick Casimir wrote:
> Dear R Fellows,
>
&g...
2023 Mar 21
1
Good Will Legal Question
...uess: It I clear from the link that they can use the R logo for commercial purposes. The issue is what to do about the "appropriate credit" and "link to the license." How would I do that on a hoodie? Would they need a web address or something?
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of John Fox
Sent: Tuesday, March 21, 2023 1:19 PM
To: Coding Hoodies <codinghoodies at mail.com>
Cc: r-help at r-project.org
Subject: Re: [R] Good Will Legal Question
[External Email]
Dear Arid Sweeting,
R-help is probably not the place to...
2023 Jan 16
1
return value of {....}
Richard,
A slight addition to your code shows an important aspect of R, local vs. global variables:
x <- 137
f <- function () {
a <- x
x <- 42
b <- x
list(a=a, b=b)
}
f()
print(x)
________________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Richard O'Keefe <raoknz at gmail.com>
Sent: Sunday, January 15, 2023 6:39 PM
To: Valentin Petzel
Cc: R help Mailing list
Subject: Re: [R] return value of {....}
I wonder if the real confusino is not R's scope rules?
(begin .) is no...
2025 Jan 28
1
R CMD check says no visible binding for global variable
There you go, once again helping strengthen ;)
John
Get Outlook for iOS<https://aka.ms/o0ukef>
________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of avi.e.gross at gmail.com <avi.e.gross at gmail.com>
Sent: Tuesday, January 28, 2025 12:01:25 AM
To: 'Naresh Gurbuxani&...
2024 Dec 31
1
Citation for stock price data from Quantmod
...sults. Some analyses preclude exact reproduction, but then researchers should rerun the analysis several times to provide a range or field of possible/probable results.
-----Original Message-----
From: Jeff Newmiller <jdnewmil at dcn.davis.ca.us>
Sent: Monday, December 30, 2024 7:52 PM
To: r-help at r-project.org; Ebert,Timothy Aaron <tebert at ufl.edu>; Erin Hodgess <erinm.hodgess at gmail.com>; r-help at r-project.org
Subject: Re: [R] Citation for stock price data from Quantmod
[External Email]
While asking if you should document what you did and give credit where due seems....
2023 Jan 16
2
return value of {....}
...\n")
y <- a
y2 <- y+b
cat("y=",y,"y2=",y2,"\n")
}
# b is a global variable and will be know to the function,
# but should be passed as a parameter as in example above.
b <- 100
myNGfunction(y)
John
________________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Sorkin, John <jsorkin at som.umaryland.edu>
Sent: Sunday, January 15, 2023 7:40 PM
To: Richard O'Keefe; Valentin Petzel
Cc: R help Mailing list
Subject: Re: [R] return value of {....}
Richard,
A slight addition to your code shows an im...
2024 Dec 31
2
Citation for stock price data from Quantmod
...preclude exact reproduction, but then researchers should rerun the analysis several times to provide a range or field of possible/probable results.
>
>-----Original Message-----
>From: Jeff Newmiller <jdnewmil at dcn.davis.ca.us>
>Sent: Monday, December 30, 2024 7:52 PM
>To: r-help at r-project.org; Ebert,Timothy Aaron <tebert at ufl.edu>; Erin Hodgess <erinm.hodgess at gmail.com>; r-help at r-project.org
>Subject: Re: [R] Citation for stock price data from Quantmod
>
>[External Email]
>
>While asking if you should document what you did and give cre...
2024 Dec 13
2
[off-topic] crossword
I do not understand the question and I do not understand the answer. Possibly one confounds the other.
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Erin Hodgess
Sent: Thursday, December 12, 2024 11:56 AM
To: Bill Dunlap <williamwdunlap at gmail.com>
Cc: r-help at R-project.org
Subject: Re: [R] [off-topic] crossword
[External Email]
RULES!
Erin Hodgess, PhD
mailto: erinm.hodgess at...
2023 Jan 16
1
return value of {....}
...stions about R remains BECAUSE that is how it was
done and whether you like it or not, may not change much any time soon. That
is why so many people like packages such as in the tidyverse because they
manage to make some changes, for better and often for verse.
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Sorkin, John
Sent: Sunday, January 15, 2023 8:08 PM
To: Richard O'Keefe <raoknz at gmail.com>; Valentin Petzel <valentin at petzel.at>
Cc: R help Mailing list <r-help at r-project.org>
Subject: Re: [R] return value of {....}...
2024 Apr 22
2
x[0]: Can '0' be made an allowed index in R?
You could have negative indices. There are two ways to do this.
1) provide a large offset.
Offset <- 30
for (i in -29 to 120) { print(df[i+Offset])}
2) use absolute values if all indices are negative.
for (i in -200 to -1) {print(df[abs(i)])}
Tim
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Peter Dalgaard via R-help
Sent: Monday, April 22, 2024 10:36 AM
To: Rolf Turner <rolfturner at posteo.net>
Cc: R help project <r-help at r-project.org>; Hans W <hwborchers at gmail.com>
Subject: Re: [R] x[0]: Can '0' be...
2023 Jan 14
1
Removing variables from data frame with a wile card
...a.frame retains common parts till things change.
>
> For those who like to use the tidyverse, it comes with lots of tools that let you select columns that start with or end with or contain some pattern and I find that way easier.
>
>
>
> -----Original Message-----
> From: R-help <r-help-bounces at r-project.org> On Behalf Of Steven Yen
> Sent: Saturday, January 14, 2023 7:49 AM
> To: Andrew Simmons <akwsimmo at gmail.com>
> Cc: R-help Mailing List <r-help at r-project.org>
> Subject: Re: [R] Removing variables from data frame with a wile card...
2023 Apr 06
2
R does not run under latest RStudio
On 4/6/23 03:49, Steven Yen wrote:
> The RStudio list generally does not respond to free version users. I was hoping someone one this (R) list would be kind enough to help me.
I don't think that is true. It is perhaps true that you cannot get
personalized help from employed staff, but you can certainly submit to
the Q&A forum.
--
David
>
> Steven from iPhone
>
>> On Apr 6, 2023, at 6:22 PM, Uwe Ligges <ligges at statistik.tu-dortmun...
2023 Apr 04
1
Simple Stacking of Two Columns
...= 1:5, right = 6:10)
df.combined <- data.frame(comb = c(df$left, df$right))
df
left right
1 1 6
2 2 7
3 3 8
4 4 9
5 5 10
df.combined
comb
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Heinz Tuechler
Sent: Monday, April 3, 2023 4:39 PM
To: r-help at r-project.org
Subject: Re: [R] Simple Stacking of Two Columns
Jeff Newmiller wrote/hat geschrieben on/am 03.04.2023 18:26:
> unname(unlist(NamesWide))
Why not:
NamesWide <-...
2017 Oct 23
0
R base packages
...ackages? Also; are R
> base packages also in CRAN? and are these packages updated only when a new
> version of R is released or can the be updated at a different time? Thanks
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
[[alternative HTML v...
2024 Dec 31
1
Citation for stock price data from Quantmod
...goal and how others may use your results. The expectations of your peers and professionalism should guide your choices.
-----Original Message-----
From: Jeff Newmiller <jdnewmil at dcn.davis.ca.us>
Sent: Monday, December 30, 2024 11:23 PM
To: Ebert,Timothy Aaron <tebert at ufl.edu>; r-help at r-project.org; Erin Hodgess <erinm.hodgess at gmail.com>
Subject: RE: [R] Citation for stock price data from Quantmod
[External Email]
The _point_ is to explain the story of the research so people can compare easily with other work. A story interrupted by tedious details is not very comp...
2024 Dec 13
3
[off-topic] crossword
...r R... I hope the JavaScript
kids are listening ;-) )
On Fri, 13 Dec 2024, 04:26 Ebert,Timothy Aaron, <tebert at ufl.edu> wrote:
> I do not understand the question and I do not understand the answer.
> Possibly one confounds the other.
>
> -----Original Message-----
> From: R-help <r-help-bounces at r-project.org> On Behalf Of Erin Hodgess
> Sent: Thursday, December 12, 2024 11:56 AM
> To: Bill Dunlap <williamwdunlap at gmail.com>
> Cc: r-help at R-project.org
> Subject: Re: [R] [off-topic] crossword
>
> [External Email]
>
> RULES!
>
&g...
2023 Oct 11
2
Problem with compatible library versions
Is that a method where a program that I write today would still run without changes in 10 years?
Tim
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of Richard O'Keefe
Sent: Wednesday, October 11, 2023 8:08 AM
To: Uwe Ligges <ligges at statistik.tu-dortmund.de>
Cc: r-help at r-project.org
Subject: Re: [R] Problem with compatible library versions
[External Email]
There is a fairly str...
2017 Oct 23
2
R base packages
I installed R 3.4.2 (Windows) and noticed that 30 folders are under my
R_HOME/library folder. I assume all of these are R base packages. Is this
correct? Where can I see a list of current R base packages? Also; are R
base packages also in CRAN? and are these packages updated only when a new
version of R is released or can the be updated at a different time? Thanks
[[alternative HTML version