You don't follow instructions very well. Read the Posting Guide more carefully.
--
Sent from my phone. Please excuse my brevity.
On April 14, 2017 9:39:30 PM PDT, Ashta wrote:
>DF1 is a data frame. I am suspecting there might be non date value
>in that column. My question is how to remove a
DF1 is a data frame. I am suspecting there might be non date value
in that column. My question is how to remove a non date values from
that field.
example if Alex152 has 12253,. This value is not a date format.
On Fri, Apr 14, 2017 at 11:24 PM, Bert Gunter wrote:
> Show us str(DF1) . It i
Show us str(DF1) . It is not a data frame.
-- Bert
On Fri, Apr 14, 2017 at 9:02 PM, Ashta wrote:
> Hi all,
> I am reading a field data that contains several variables. The sample
> of the data with the first two variables is shown below. I wanted to
> know the minimum and maximum recording
A very dirty solution.
I hope someone can give a better solution:
library(ggplot2)
set.seed(1)
df <- expand.grid(g = factor(1:4), f = factor(c("a", "b", "c")))
df <- df[-1, ] # some factors are not present in certain groups
df$v <- runif(nrow(df))
library(dplyr)
df <- df %>% arrange(g, desc(v))
Hi Jeff
I have seen the seq_along function but never knew the what or why of it. Your
response is much appreciated and just shows how brilliant the creators of R
were/are.
Thank you for enlightening me. Carl Sutton
On Friday, April 14, 2017 3:54 PM, Jeff Newmiller
wrote:
Have you eve
Hi all,
I am reading a field data that contains several variables. The sample
of the data with the first two variables is shown below. I wanted to
know the minimum and maximum recording date However, I have some
problem.
Name Rdate V1 to V20
Alex101/03/2015
Alex201/03/2014
Have you ever used the seq_along() function?
If you want to delegate the decision of how many elements you want to process
to some earlier point in your (or someone else's) code, then the most logical
way to create a result vector that is the same size as some input vector, even
if that vector
Hi
just messing around today and am now perplexed by the seq argument
"along.with".
Please, I am just just seeking some knowledge here. Obviously I missed a point
and would like to know what it is.
seq(1,10,length.out = 2) makes sense
seq(1,10,by = 2) makes sense
seq(1,10, along.wi
Hi,
I need to bars to display in order based on the values of "v" within each
group "g". Is this possible?
library(ggplot2)
set.seed(1)
df <- expand.grid(g = 1:4, f = factor(c("a", "b", "c")))
df <- df[-1, ] # some factors are not present in certain groups
df$v <- runif(nrow(df))
ggplot(df, aes(
9 matches
Mail list logo