search for: analisado

Displaying 20 results from an estimated 123 matches for "analisado".

2024 Mar 29
1
Output of tapply function as data frame: Problem Fixed
...ing is more than enough. >>>> >>>> >>>> dput(head(data, 20L)) >>>> >>>> >>>> Hope this helps, >>>> >>>> Rui Barradas >>>> >>>> >>>> -- >>>> Este e-mail foi analisado pelo software antiv?rus AVG para verificar a >>>> presen?a de v?rus. >>>> www.avg.com >>>> >>> >> Hello, >> >> This pipe? >> >> >> with(data, tapply(count, Date, mean)) |> as.data.frame() >> >> >>...
2024 Mar 29
2
Output of tapply function as data frame: Problem Fixed
...the problem the output of the following is more than enough. > >> > >> > >> dput(head(data, 20L)) > >> > >> > >> Hope this helps, > >> > >> Rui Barradas > >> > >> > >> -- > >> Este e-mail foi analisado pelo software antiv?rus AVG para verificar a > >> presen?a de v?rus. > >> www.avg.com > >> > > > Hello, > > This pipe? > > > with(data, tapply(count, Date, mean)) |> as.data.frame() > > > I am not seeing anything wrong with it. I have t...
2024 Feb 23
2
help - Package: stats - function ar.ols
...ovide commented, minimal, self-contained, reproducible code. > Hello, > > Thanks for the data but the code is missing from the attachment. > Can you please post your code? In an attachment or directly in the > e-mail body. > > Rui Barradas > > > -- > Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. > www.avg.com -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: test.txt URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20240223/50722a06/attachment.txt>
2024 Feb 23
1
help - Package: stats - function ar.ols
.../www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. Hello, Thanks for the data but the code is missing from the attachment. Can you please post your code? In an attachment or directly in the e-mail body. Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2023 Dec 07
1
Convert character date time to R date-time variable.
...de.html > and provide commented, minimal, self-contained, reproducible code. Hello, Coerce with ?as.POSIXct Don't forget the underscore in the format. as.POSIXct("2020-09-17_00:00:00", format = "%Y-%m-%d_%H:%M:%S") Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Feb 02
1
gathering denominator under frac
...ditive" and "true". library(ggplot2) g <- ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) + geom_point() g + ylab(expression(paste(frac( additive~HCO[3]^"-", true~HCO[3]^"-" )))) Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Jun 02
1
R code for overlapping variables -- count
...http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. Hello, The following is simpler. r2 <- xtabs(~ ., x) |> as.data.frame() r2[-4L] # or r2[names(r2) != "Freq"] Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Jul 13
1
Obtaining predicted probabilities for Logistic regression
...exp(x)/(1 + exp(x)) # use the fitted line equation y <- coef(Model)[1L] + coef(Model)[2L] * (Dat$Gender == "Male") pred2 <- exp(y)/(1 + exp(y)) head(predict(Model, type="response")) head(pred1) |> c() head(pred2) Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Apr 21
1
x[0]: Can '0' be made an allowed index in R?
.....) { i <- i + 1L NextMethod() } as_zerobased <- function(x) { class(x) <- c("zerobased", class(x)) x } x <- 1:10 y <- as_zerobased(x) y[0] #> [1] 1 y[1] #> [1] 2 y[9] #> [1] 10 y[10] #> [1] NA Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Sep 19
1
Inquiry About R Packages for Specific Research Areas
...gt; 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 https://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Feb 02
1
gathering denominator under frac
...is, aes(Sepal.Length, Sepal.Width, color = Species)) + > geom_point() > > g + ylab(expression(paste(frac( > additive~HCO[3]^"-", > true~HCO[3]^"-" > )))) > > > > Hope this helps, > > Rui Barradas > > > -- > Este e-mail foi analisado pelo software antiv?rus AVG para verificar a > presen?a de v?rus. > www.avg.com > > ______________________________________________ > 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...
2024 Sep 17
1
(no subject)
...gt; > > >> > > >> > > >> Can you post the expected output too? > > >> > > >> Hope this helps, > > >> > > >> Rui Barradas > > >> > > >> > > >> -- > > >> Este e-mail foi analisado pelo software antiv?rus AVG para verificar a > > >> presen?a de v?rus. > > >> www.avg.com > > >> > > > > > > > > Hello, > > > > Something like this? > > > > > > test <- > > structure(list( > &gt...
2024 Apr 07
1
Question regarding reservoir volume and water level
...water_level <- function(l, v, level = 1240, volume = 7e6) { if(missing(v)) { volume * l / level } else level * v / volume } lev <- 1250 vol <- 14e6 water_level(l = lev) #> [1] 7056452 water_level(v = vol) #> [1] 2480 Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Jul 18
1
ggplot two-factor legend
...le code. Hello, To have one legend only, the labels must be the same. Try using labels=c("?LN", "BIO") in scale_linetype_manual(values=c("dashed", "solid"), labels=c("?LN", "BIO")) Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Jun 15
2
code for year month day hr format
...-10 154.6 > #> 3 2012-08-01 2 3.7 383 132 -10 154.6 > #> 4 2012-08-01 3 3.7 391 132 -9 154.6 > #> 5 2012-08-01 4 4.2 399 132 -7 154.6 > #> 6 2012-08-01 5 4.1 411 132 -6 154.6 > > > Hope this helps, > > Rui Barradas > > > -- > Este e-mail foi analisado pelo software antiv?rus AVG para verificar a > presen?a de v?rus. > www.avg.com > [[alternative HTML version deleted]]
2024 Feb 23
1
help - Package: stats - function ar.ols
...ovide commented, minimal, self-contained, reproducible code. > Hello, > > Thanks for the data but the code is missing from the attachment. > Can you please post your code? In an attachment or directly in the > e-mail body. > > Rui Barradas > > > -- > Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. > http://www.a/ > vg.com%2F&data=05%7C02%7Ctebert%40ufl.edu%7C0afd65836d774adc099408dc34 > 9f53c7%7C0d4da0f84a314d76ace60a62331e1b84%7C0%7C0%7C638443106144266047 > %7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2...
2024 Jul 18
1
ggplot two-factor legend
...ed","dark green"), labels = c("?LN", "BIO") ) + scale_linetype_manual( values = c("dashed", "solid"), labels = c("?LN", "BIO") ) + theme_bw() Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Jun 16
2
code for year month day hr format
...-10 154.6 >> #> 4 2012-08-01 3 3.7 391 132 -9 154.6 >> #> 5 2012-08-01 4 4.2 399 132 -7 154.6 >> #> 6 2012-08-01 5 4.1 411 132 -6 154.6 >> >> >> Hope this helps, >> >> Rui Barradas >> >> >> -- >> Este e-mail foi analisado pelo software antiv?rus AVG para verificar a >> presen?a de v?rus. >> www.avg.com >> > Hello, There is an error in your new code: paste YEAR with DOY, not with HR. As for the rest, is your real data like the one you posted before? If it is then I don't see anything wr...
2023 Nov 30
1
back tick names with predict function
...confidence') # fail # Add CI for prediction value (y-tilde uses 'p') # usual trick is to assign x to actual x-var name in middle dataframe arguement CI.p = predict(mod2, newdata = newd, interval = 'prediction') # fail Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. www.avg.com
2024 Apr 07
1
Question regarding reservoir volume and water level
...water_level <- function(l, v, level = 1240, volume = 7e6) { if(missing(v)) { volume * l / level } else level * v / volume } lev <- 1250 vol <- 14e6 water_level(l = lev) #> [1] 7056452 water_level(v = vol) #> [1] 2480 Hope this helps, Rui Barradas -- Este e-mail foi analisado pelo software antiv?rus AVG para verificar a presen?a de v?rus. http://www.avg.com/ ______________________________________________ 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...