[R] [R-pkgs] NMOF 1.2-2 (Numerical Methods and Optimization in Finance)

2017-10-24 Thread Enrico Schumann
Dear all, version 1.2-2 of package NMOF is on CRAN now. NMOF stands for 'Numerical Methods and Optimization in Finance'. The package provides R code and datasets for the book with the same name, written by Manfred Gilli, Dietmar Maringer and Enrico Schumann, published by Elsevier/Acad

Re: [R] Generating help files for a function

2017-12-16 Thread Enrico Schumann
am now putting in it the package. Not a problem. But the > problem is the help file. What is the best way to generate a help file > "after the fact" like that, please? > > Thank you in advance. Hope everyone is enjoying various holidays. > > Sincerely

Re: [R] How to programmatically save a web-page using R (mimicking Command+S)

2018-01-14 Thread Enrico Schumann
ownload the complete site. It is usually available by default on Unix-style systems; I am sure there is a version for Mac. If you insist on using R, you could write a simple wrapper, using ?system or ?system2. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net ___

Re: [R] command line fails

2018-02-02 Thread Enrico Schumann
o read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE a

Re: [R] command line fails

2018-02-02 Thread Enrico Schumann
build (i.e. a complete version, not just the patch) is available from the same CRAN site at which you find the official release; just further below. > -----Original Message- > From: Enrico Schumann [mailto:e...@enricoschumann.net] > Sent: Friday, February 02, 2018 10:36 AM > To

Re: [R] bracketing for optimize

2018-05-31 Thread Enrico Schumann
entation. (Presumably, this is used in > nlm, too; alas, nlm is in C, not native R.) regards, /iaw > There is a 'bracketing' function in package NMOF, though it is for root-finding (i.e. for optimising you would need the derivative). -- Enrico Schumann (the maintai

Re: [R] Zoo changing time-zone when I merge 2 zoo time series

2018-07-18 Thread Enrico Schumann
.01 15720.61 ## 2017-12-07 08:41:00 17600.00 15770.00 ## 2017-12-07 08:42:00 17593.00 15750.00 ## 2017-12-07 08:43:00 17630.01 15770.00 See Ripley, B. D. and Hornik, K. (2001) Date-time classes. R News, 1/2, 8–11. https://www.r-project.org/doc/Rnews/Rnews_2001-2.pdf -- Enrico Schumann Luce

Re: [R] regular expression help

2017-06-08 Thread Enrico Schumann
est <- "hello\n1" regexpr(".*[0-9]", test) ## [1] 1 ## attr(,"match.length") ## [1] 7 ## attr(,"useBytes") ## [1] TRUE regexpr(".*[0-9]", test, perl = TRUE) ## [1] 7 ## attr(,"match.length") ## [1] 1 ## att

Re: [R] Can I use tabu search for minimization problem ?

2017-06-20 Thread Enrico Schumann
, 1))) this cause the 0 value. How can I use it to get my minimization value using tabu search in R ? Thanks . If you want people to help you, provide a minimal (or, at least, small) reproducible code example. In particular, tell people what package(s) you are using. -- Enrico Schumann

Re: [R] Packages for Learning Algorithm Independent Branch and Bound for Feature Selection

2017-07-01 Thread Enrico Schumann
st to also look at heuristic algorithms that can deal with such problems (e.g. genetic algorithms). -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://st

Re: [R] Packages for Learning Algorithm Independent Branch and Bound for Feature Selection

2017-07-03 Thread Enrico Schumann
luck) Enrico Schumann [*] Which does not mean it has not found it. I will take a look at that page, thanks! Hopefully there is an R implementation of generic B&B as I described out there somewhere... Alex Byrley Graduate Student Department of Electrical Engineering 235 Davis Hall (716) 341-1

Re: [R] Select part of character row name in a data frame

2017-10-19 Thread Enrico Schumann
Francesca Pancotto, PhD Use ?grep or ?grepl: df[grep("strat", row.names(df)), ] (in which 'df' is your data frame) -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-hel

Re: [R] filter a data.frame in dependence of a column value

2016-06-17 Thread Enrico Schumann
) > > I tried it with the following code, but that doesn't work. > > data4.1<-data3[data3$ORDER%in% "[(]*->*[)]",] > > maybe anyone can help me. > > Thank you. > > Best regards > > Mat > Try ?grepl instead of %in%. x <- c("for

Re: [R] Help with constrained portfolio optimization

2016-07-09 Thread Enrico Schumann
rep(wmin, na)) result <- solve.QP(Dmat = 2*cov(R), dvec = rep(0, na), Amat = t(A), bvec = bvec, meq = 2) w <- result$solution ## check results sum(w) ## check budget constraint sum(w[1:5])## chec

Re: [R] get start and end date of ISO weeks giving a date as input

2016-09-08 Thread Enrico Schumann
week starts ends 1 2010-08-21 33 2010-08-16 2010-08-22 2 2016-08-01 31 2016-08-01 2016-08-07 -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.et

Re: [R] get start and end date of ISO weeks giving a date as input

2016-09-08 Thread Enrico Schumann
etworks.imdea.org/people/~luis_nunez/ > > On 09/08/2016 12:13 PM, Veronica Andreo wrote: > > Hello list, > > Is there a quick way to get start and end date (%Y-%m-%d) from ISO > weeks if I only have dates? >

Re: [R] Help with strftime error "character string is not in a standard unambiguous format"

2016-09-12 Thread Enrico Schumann
ace (and not attached): > [1] compiler_3.3.1 tools_3.3.1 >> > > __ > R-help@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-proj

Re: [R] Faster Subsetting

2016-09-28 Thread Enrico Schumann
lly faster to first extract the component of interest, i.e. the specific column, and then to subset this vector. The result will, of course, be a vector, not a data.frame.) -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@

Re: [R] Fast multiple match function

2015-04-07 Thread Enrico Schumann
match(x, v)' is what you want? In which 'x' may be a vector of length > 1. In any case, have you actually tried package 'fastmatch'? The function 'fmatch', which that package provides, is very fast for repeated lookups in a table 'v'. -- Enrico Schum

Re: [R] dbGetQuery() returns wrong value

2018-07-31 Thread Enrico Schumann
ciated. > __ R-help@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, repro

Re: [R] loop over matrix: subscript out of bounds

2018-08-06 Thread Enrico Schumann
in 1:nrow(myMatrix)) { for(i in 1:ncol(myMatrix)) { myMatrix[i,i] = -1 myMatrix[i,i+1] = 1 }} print(myMatrix) Thanks in advance! Perhaps you do not need loops at all? myMatrix <- matrix(0, 5, 12) diag(myMatrix) <- -1 diag(myMatrix[, -1]) <- 1 -- Enrico Schuman

Re: [R] sub/grep question: extract year

2018-08-09 Thread Enrico Schumann
9])[ \\.\\)-].*", "\\1", subtext) # return 2010 but subtext <- "bla 1010 bla" sub(".*[ \\.\\(-]([12][01289][0-9][0-9])[ \\.\\)-].*", "\\1", subtext) # return 1010 I would like exclude the case 1010 and other like this. The solution would be:

Re: [R] time mathematics

2018-11-20 Thread Enrico Schumann
s it possible without any additional package ? > > > Kind Regards Knut > Like so? start <- "23:01:18" Y <- 1:5 tmp <- as.POSIXct(paste(Sys.Date(), start)) tmp <- tmp + seq(from = 0, length.out = length(Y)) format(tmp, "%H:%M:%S")

Re: [R] large number of scrollable histograms....

2019-01-22 Thread Enrico Schumann
tance need less space (and if you sort the input data by median, say, they often help much better to see differences between samples); or use similar plots such as quartile plots (e.g. https://cran.r-project.org/web/packages/NMOF/vignettes/qTableEx.pdf ). kind re

Re: [R] Complete month name from as.yearmon()

2019-04-13 Thread Enrico Schumann
his gives: [1] "Apr 2019". CB> How can I extract the full name ie. 'April 2019' CB> Appreciate your pointer. Thanks, library("zoo") ## where 'as.yearmon' comes from format(as.yearmon(Sys.Date()), "%B %Y") ## [1] "Ap

Re: [R] split a string a keep the last part

2014-08-28 Thread Enrico Schumann
other strings > have more or fewer parts separated by '-'. Is there a general way to do it? > Thanks. > > Jun This should work for your example: gsub(".*-([^-]*)$", "\\1", test) -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net ___

Re: [R] Optimization Grid Search Slow

2015-09-18 Thread Enrico Schumann
; subLogLike <- 0; bestTemp <- 0; bestDelta= 0; > > min = 0.001; max = .5; inc = 0.001; > deltaList = seq(min, max, inc) > mina = 0; maxa = 5; inca = .01 > amList = seq(mina, maxa, inca) > maxLogValue <- -1000 > for(delta in deltaList){ > for(temp in amL

Re: [R] Query about use of format in strptime

2016-04-11 Thread Enrico Schumann
> Thank you for your attention and your help > Stefano strptime creates a POSIXlt object, and the specified format tells it how to interpret the string you pass in. (Your factor is converted to character by strptime.) If you want to have the POSIXlt object printed in a particular way, use ?s

Re: [R] Least Median Square Regression

2016-10-08 Thread Enrico Schumann
Mac > bryanmac...@gmail.com > A tutorial on how to run such regressions is included in the NMOF package. https://cran.r-project.org/package=NMOF/vignettes/PSlms.pdf -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-p

Re: [R] Least Median Square Regression

2016-10-08 Thread Enrico Schumann
;manually' an LMS-regression, i.e. how to do the actual optimisation. > >> On Oct 8, 2016, at 6:17 AM, Enrico Schumann wrote: >> >> On Sat, 08 Oct 2016, Bryan Mac writes: >> >>> Hi R-help, >>> >>> How do you perform least median squa

Re: [R] Output formatting in PDF

2016-10-11 Thread Enrico Schumann
how to manage the > formatting part though, so that the 1-pager output looks decently > presentable. Thanks. > > Regards, > Preetam If using LaTeX is an option, I would suggest ?Sweave. There are many tutorials on the web that should get you started. -- Enrico Schumann Lucerne, Switz

[R] [R-pkgs] NMOF 0.40-0 (Numerical Methods and Optimization in Finance)

2016-10-25 Thread Enrico Schumann
Dear all, version 0.40-0 of package NMOF is on CRAN now, 5 years (exactly) after its first release on CRAN. 'NMOF' stands for 'Numerical Methods and Optimization in Finance'. The package accompanies the book with the same name, written by Manfred Gilli, Dietmar Maringer

Re: [R] Data and Variables from Tables

2017-03-21 Thread Enrico Schumann
UE) for (i in seq_len(nrow(df))) assign(df[i, "Symbol"], df[i, "Value"]) But depending on what you want to do, it may be cleaner/safer to keep the variables from the table together in a list. tbl <- as.list(df[["Value"]])

Re: [R] Setting up a .Rprofile file

2017-03-24 Thread Enrico Schumann
variable (and tilde expansion will be | performed). If this is unset, a file called | ‘.Rprofile’ is searched for in the current directory | or in the user's home directory (in that order). The | user profile file is sourced into the workspace. ` -- Enrico Schumann Lucerne, Switzerland

Re: [R] Setting up a .Rprofile file

2017-03-24 Thread Enrico Schumann
ds" But maybe I am completely misunderstanding what you mean Kind regards Enrico > > >> On Mar 24, 2017, at 3:48 AM, Enrico Schumann wrote: >> >> On Thu, 23 Mar 2017, Bruce Ratner PhD writes: >> >>> Hi R'ers: >>> I wou

Re: [R] Reference to cite stats package

2020-10-28 Thread Enrico Schumann
rl = {https://www.R-project.org/}, ## } ## ## We have invested a lot of time and effort in creating R, please cite it ## when using it for data analysis. See also ‘citation("pkgname")’ for ## citing R packages. kind regards Enrico -- Enrico Schumann Lucer

Re: [R] FREDR and R 3.6

2020-10-30 Thread Enrico Schumann
this on the fredr information package and > was wondering if anyone here might know? > Just for completeness: there is also the 'alfred' package (https://cran.r-project.org/package=alfred), with which you can also access data of the St. Louis Fed. -- Enrico Schumann Lucerne, Swi

Re: [R] union of two sets are smaller than one set?

2021-01-31 Thread Enrico Schumann
66608+59387. > However it is 681193 which is less that number of elements in s1! > >> length(base::union(s1, s2)) > [1] 681193 > > Any hints? > > Regards > Martin > Duplicates? kind regards Enrico -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net

Re: [R] Date Time, as.POSIXct used locale, strange plot behavior

2021-04-30 Thread Enrico Schumann
;, tz="CEST") >>> # [1] "2021-04-21 CEST" >>> as.POSIXct("2021-04-21 00:00:00") >>> # [1] "2021-04-21 CEST" >>> >>> all representations on my system are the same, why is the plot location >>> of the arrows different?? >>> I am

Re: [R] Finding the package providing funtion "%du%"

2021-06-30 Thread Enrico Schumann
3.8 > generics_0.1.0 > [10] ellipsis_0.3.2 tools_4.1.0 glue_1.4.2 purrr_0.3.4 > compiler_4.1.0 pkgconfig_2.0.3 tidyselect_1.1.1 tibble_3.1.2 > > > > > > > > -- > Federico Calboli > LBEG - Laboratory of Biodiversity and Evolutionar

Re: [R] Unexpected date format coercion

2021-07-01 Thread Enrico Schumann
rsplit(s, "[-]") year <- as.numeric(sapply(tmp, `[[`, 1)) valid.year <- year < 2500 & year > 1800 month <- as.numeric(sapply(tmp, `[[`, 2)) valid.month <- month >= 0 & month <= 12 day <- as.numeric(sappl

Re: [R] coercion to an object...

2021-08-29 Thread Enrico Schumann
ng for: A <- 42 get("A") ## [1] 42 > Thank you, > Yours sincerely, > AKSHAY M KULKARNI > -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and m

Re: [R] Converting characters back to Date and Time

2021-08-31 Thread Enrico Schumann
018-06-18 12:00:00 CEST" Note that the times differ: the numbers are probably not /displayed/ to full precision in R. You may also want to search the archives of this list, as this question has been discussed before. -- Enrico Schumann (maintainer of package datetimeutils) Lucerne, Swit

Re: [R] Show only header of str() function

2021-09-02 Thread Enrico Schumann
nvisible(NULL) } (which is essentially taken from 'str.data.frame'). Then: class(iris) <- c("data.frame.oneline", class(iris)) str(iris) ## 'data.frame': 150 obs. of 5 variables str(list(a = 1, list(b = 2,

Re: [R] read.csv() error

2021-09-02 Thread Enrico Schumann
5 digits. > > I don't understand this error because the equivalent commands for another > data source file completes without error. > > What is that error message telling me? > > TIA, > > Rich > There is no column 'ht'. -- Enrico Schumann Luce

Re: [R] read.csv() error

2021-09-02 Thread Enrico Schumann
lt;- data.frame(a = 1:5) df$b <- as.numeric(df$b) ## Error in `$<-.data.frame`(`*tmp*`, b, value = numeric(0)) : ## replacement has 0 rows, data has 5 -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-hel

Re: [R] Extracting Comments from Functions/Packages

2021-10-07 Thread Enrico Schumann
    if(length(npos[[1]]) == 0) return(character(0)); >     strip.FUN = if(strip) { >             function(id) { >                 if(npos[[1]][[id]] + 1 < npos[[2]][[id]]) { >                     nStart = npos[[1]][[id]] + 1; >                  

Re: [R] Do not show a "message d'avis" that qbeta reports

2021-10-20 Thread Enrico Schumann
age d'avis : > Dans qbeta(p = c(0.025, 0.975), shape1 = 3.3108797, shape2 = 1e-07) : >   qbeta(a, *) =: x0 with |pbeta(x0,*) - alpha| = 0.024997 is not accurate > Try 'suppressWarnings'. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __

[R] [R-pkgs] NMOF 2.5-0 (Numerical Methods and Optimization in Finance)

2021-10-21 Thread Enrico Schumann
i, Dietmar Maringer and Enrico Schumann.[1] Since the last announcement on this list, functionality has been added to the package, e.g. for computing minimum-CVaR and tracking portfolios, or downloading IPO data. See the NEWS file [2] for all changes. The documentation has also been expanded.

Re: [R] R vs Numpy

2021-10-28 Thread Enrico Schumann
haps also of interest: https://github.com/matloff/R-vs.-Python-for-Data-Science -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r

Re: [R] What are the pros and cons of the various R functions and methods for conducting least median of squares regression analysis?

2022-04-17 Thread Enrico Schumann
d: you'd probably get better answers if you ask more specific questions, e.g. why/for what application you want to use LMS. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and

Re: [R] Unicode chars

2022-08-25 Thread Enrico Schumann
your TeX distribution provides. If this is a vignette, you can specify a Makefile, see https://cran.r-project.org/doc/manuals/R-exts.html#Writing-package-vignettes > > > [[alternative HTML version deleted]] > > __ >

Re: [R] Question about Line Ending Choice

2022-09-29 Thread Enrico Schumann
within R. > > QUESTION > Is it possible within R to define the line ending aspect of file output? > > > Kindest Regards, Just a remark: there is a "standard" for CSV, https://datatracker.ietf.org/doc/html/rfc4180. It always requires C

Re: [R] Fwd: Reading very large text files into R

2022-09-29 Thread Enrico Schumann
tp://www.bigelow.org/ >> https://eco.bigelow.org >> > Maybe I have missed it, but could you please show how you tried to read the table? When I use your file with read.table("sample text.txt", header = FALSE, sep = ",") I get ## V1

Re: [R] Robust standard error

2022-10-02 Thread Enrico Schumann
pful response here, but generally speaking, this list is > about R **programming**, and statistical issues/tutorials are off topic. > You might try > https://stackoverflow.com/questions/tagged/statistics > if you don't get adequate help here. >

Re: [R] Rate of Reading into R from net

2022-11-14 Thread Enrico Schumann
b)is there (I can't find > anything) within R which allows me to monitor the progress of the download, > if in fact it is taking place? > Thanks Nick Wray > Have you tried 'download.file'? It should provide a progr

Re: [R] gmp::bigq vs. MASS::fractions

2023-01-09 Thread Enrico Schumann
o create the fractions directly: gmp::as.bigq(n = 0:7, d = 7) ## Big Rational ('bigq') object of length 8: ## [1] 0 1/7 2/7 3/7 4/7 5/7 6/7 1 -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-proj

Re: [R] wininet deprecation

2023-02-21 Thread Enrico Schumann
repository. Seems a bit overkill > (given that wininet has done the trick nicely up to > now), but at least it works. > > HTH. > > \Gisbert There is also the miniCRAN package (https://cran.r-project.org/package=miniCRAN). -- Enrico Schumann Lucerne, Switzerland http://enricos

Re: [R] Open a file which name contains a tilde

2019-06-05 Thread Enrico Schumann
gt; How can I switch off any file crippling activity? FS> Kind regards, FS> Frank Do you need 'path.expand'? For example, readLines("~/Desktop/a ~ b") reads just fine the content of a file named 'a ~ b' on my desktop. -- Enrico Schumann Lucerne, Swi

Re: [R] Open a file which name contains a tilde

2019-06-05 Thread Enrico Schumann
Quoting Frank Schwidom : On 2019-06-05 20:32:07, Enrico Schumann wrote: >>>>> "FS" == Frank Schwidom writes: FS> Hi, FS> As I can see via path.expand a filename which contains a FS> tilde anywhere gets automatically crippled. FS> +

Re: [R] Creating a web site checker using R

2019-08-08 Thread Enrico Schumann
ointers/ideas: 1) Since you know cron, I suppose you work on a Unix-like system, and you likely have a programme called 'wget' either installed or can easily install it. 'wget' has an option 'mirror', which allows you to

Re: [R] Strange behaviour of sapply function.

2019-09-12 Thread Enrico Schumann
apply(1:10, f)) ## int [1:10] 1 2 3 4 5 6 7 8 9 10 str(sapply(-5:5, f)) ## List of 11 ## $ : int(0) ## $ : int(0) ## $ : int(0) ## $ : int(0) ## $ : int(0) ## $ : int(0) ## $ : int 1 ## $ : int 2 ## $ : int 3 ## $ : int 4 ## $ : int 5 -- Enrico Schumann Lucerne, Switzerland http://e

[R] [R-pkgs] NMOF 2.0-1 (Numerical Methods and Optimization in Finance)

2019-10-22 Thread Enrico Schumann
Dear all, version 2.0-1 of package NMOF is on CRAN now. NMOF stands for 'Numerical Methods and Optimization in Finance', and it accompanies the book with the same name, written by Manfred Gilli, Dietmar Maringer and Enrico Schumann.[1] The new version of the package provides all

Re: [R] class of 'try' if error is raised

2019-12-15 Thread Enrico Schumann
th a correct result class HW> instead of an error? HW> Thanks, HW You should probably use if (inherits(e, "try-error")) { # ... do something } kind regards ENrico -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net ___

Re: [R] Cryptic error from stargazer

2023-06-08 Thread Enrico Schumann
> time zone: Asia/Kolkata >> tzcode source: system (glibc) >> >> attached base packages: >> [1] stats graphics grDevices utils datasets methods base >> >> other attached packages: >> [1] stargazer_5.2.2 >> >> loaded via a namespace (and not attached): >> [1] compiler_

Re: [R] Merge with closest (not equal) time stamps

2023-08-08 Thread Enrico Schumann
cbind(option.trades, stock.trades[i, ]) ## timestamp option.price timestamp stock.price ## 1 2023-08-07 10:23:22 2.5 2023-08-07 10:23:21 102.2 ## 3 2023-08-07 10:25:33 2.7 2023-08-07 10:24:57 103.1 ## 4 2023-08-07 10:28:41

Re: [R] Noisy objective functions

2023-08-13 Thread Enrico Schumann
algo = list( nP = 100, nG = 500, min = rep( 5, 5), max = rep( 10, 5))) ofv.below.threshold[i] <- sol$OFvalue < 1e-6 } sum(ofv.below.threshold)/length(ofv.below.threshold) (These 50 runs take less than half a min

Re: [R] replace character by numeric value

2023-09-28 Thread Enrico Schumann
- attr(*, ".internal.selfref")= > > Thank you for help > I'd use something like this: map <- c(BUY = 1, SELL = -1) mydf1$side <- map[mydf1$side] str(mydf1) ## Classes ‘data.table’ and 'data.frame': 1 obs. of 4 variables: ## $ symbo

Re: [R] Basic astronomy package recommendation wanted.

2024-01-30 Thread Enrico Schumann
=suncalc (but I don't use any of those packages) Perhaps also worth asking at: https://stat.ethz.ch/mailman/listinfo/R-SIG-Geo/ -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UN

Re: [R] refresh.console() function?

2024-03-13 Thread Enrico Schumann
ame? > ?flush.console ... but you'll need to print/message/cat/... explicitly in the loop, or the output won't be shown. [Also, options(warn=1) might be useful.] -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net _

Re: [R] Regexp pattern but fixed replacement?

2024-05-23 Thread Enrico Schumann
his reply is late, but you can use raw strings for the replacement: gsub("a|b", r"(\\)", "abcdef") ## [1] "cdef" which might be easier to read, sometimes. [...] -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net _

Re: [R] add only the 1st of May with POSIXct

2024-05-28 Thread Enrico Schumann
ano > I think this could be simplified a bit: a <- as.POSIXct("2002-11-01 09", format = "%Y-%m-%d %H", tz="Etc/GMT-1") b <- as.POSIXct("2004-06-01 09", format = "%Y-%m-%d %H", tz="Etc/GMT-1") Create your sequence:

Re: [R] Reading a txt file from internet

2024-09-07 Thread Enrico Schumann
ded nulls > > Is there any way to read this data directly onto R? > > Thanks for your time > The looks like a byte-order mark (https://en.wikipedia.org/wiki/Byte_order_mark). Try this: fn <- file('https://online.stat.psu.edu/onlinecourses/sites/stat501/files/

Re: [R] date

2019-12-19 Thread Enrico Schumann
;> >> I used this >> >> gs$d1 = as.Date(as.character(gs$date), format = "%Y-%m-%d") >> >> >> >> but I got NA's. >> >> >> >> How do I get my desired result? >> >> Thank you. >>

Re: [R] outer join of xts's

2020-01-02 Thread Enrico Schumann
merged series, with an attribute 'timestamp', from which you could create an xts object again. I am not sure if it is the fastest way, but it's probably faster than calling merge repeatedly. kind regards Enrico (the maintainer of PMwR) -- Enrico Schuman

Re: [R] Incorrect Conversion of Datetime

2020-01-08 Thread Enrico Schumann
T" "1998-01-06 05:00:00 GMT" [29] "1998-01-06 06:00:00 GMT" This seems to suggest day 5 and 6 in January 1998 instead of day 1 and 2 in May of 1998. I have spent some time trying to resolve this but I have not been successful. I would be thankful if you could help me to ch

Re: [R] Incorrect Conversion of Datetime

2020-01-08 Thread Enrico Schumann
6 6480 ## 6 98 1 57 6457 The data that you read in has January (1) as month. So whatever goes wrong, seems to go wrong when you read the data. Are you quite sure you read the file you read is the file you have shown? kind regards Enrico Ogbo

Re: [R] Reporting missing dates

2020-01-16 Thread Enrico Schumann
Time differences in days # [1] 0 1 0 That shows that the second date is followed by one missing day. Duncan Murdoch But you might want to check if the dates in 'd' are really sorted. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net ___

Re: [R] Convert Long DOY time format to yyyymmdd hh format

2020-01-23 Thread Enrico Schumann
header = FALSE, sep = " ") -> data as.POSIXct(paste(as.Date(paste0(data[[1]], "-1-1")) + data[[2]] - 1, data[[3]]), format = "%Y-%m-%d %H") You might want to specify a different timezone, and also check for "off-by-one" erro

Re: [R] Sometimes commands do not terminate after upgrading to R 4.0 and Ubuntu 20.04

2020-05-09 Thread Enrico Schumann
ed Ubuntu (a day or two later). Adrien> I hope someone can help. There has been a discussion on R-SIG-Debian recently, and /perhaps/ it is related to your troubles. See https://stat.ethz.ch/pipermail/r-sig-debian/2020-April/003159.html and in particular https://stat.ethz.ch/pipermail/r-sig-debia

Re: [R] Date from text

2020-05-15 Thread Enrico Schumann
ing does not specify the date completely, the returned answer may be system-specific." So perhaps try something like as.Date(paste0("01-", "11-1993"), format = "%d-%m-%Y") ## [1] "1993-11-01" Or look at 'yearmon' i

Re: [R] Output multiple sheets to Excel files with openxlsx::write.xlsx

2020-05-27 Thread Enrico Schumann
:3, b = 4:6) library("openxlsx") wb <- createWorkbook() sheet <- "sheet1" addWorksheet(wb, sheet) writeData(wb, sheet = sheet, x = df) sheet <- "sheet2" addWorksheet(wb, sheet) writeDa

Re: [R] How to convert column from millisecond epoch time to yyyy-mm-dd GMT

2020-06-23 Thread Enrico Schumann
3: INCBR0005073131 157705920 itsm-ticket U&FOUO&USA    0 > 4: INCBR0005074186 157705920 itsm-ticket U&FOUO&USA    0 > 5: INCBR0005074188 157705920 itsm-ticket U&FOUO&USA    0 > 6: INCBR0005074546 157705920 itsm-ticket U&FO

Re: [R] modify timestemp

2013-07-04 Thread Enrico Schumann
13 00:18:00 > 01/10/2013 00:19:00 > > Thanks for your help! Since your dates and times are character vectors, you can do this: substr(Dataset$Time, 7, 8) <- "00" If you want to treat them as actual dates and times, you need to convert them into one of R's date/time classes (

Re: [R] optimize integer function parameters

2013-07-23 Thread Enrico Schumann
ction" looks like. Could you post a (small) self-contained example? -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://w

Re: [R] optimize integer function parameters

2013-07-23 Thread Enrico Schumann
On Tue, 23 Jul 2013, Christof Kluß writes: > Am 23-07-2013 13:20, schrieb Enrico Schumann: > >> On Tue, 23 Jul 2013, Christof Kluß writes: >> >>> >>> I have "observations" obs <- (11455, 11536, 11582, 11825, 11900, ...) >>> >>>

Re: [R] cannot base64decode string which is base64encode in R

2013-08-03 Thread Enrico Schumann
ion or file name. For ‘base64decode’ it can be a string or a binary connection." Try this: rawToChar(base64decode(base64encode(charToRaw("saf" ## [1] "saf" -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net ___

Re: [R] using "rollapply" to calculate a moving sum or running sum?

2013-08-03 Thread Enrico Schumann
#I tried >> rollapply and get the error message >> #"Error in seq.default(start.at, NROW(data), by = by) : >> # wrong sign in 'by' argument" >> >> #example: >> >> mymatrix <- ( matrix(data=1:100, nrow=5, ncol=20) ) >> mymatrix_

Re: [R] cannot base64decode string which is base64encode in R

2013-08-05 Thread Enrico Schumann
On Mon, 05 Aug 2013, Qiang Wang writes: >> On Sat, Aug 3, 2013 at 3:49 PM, Enrico Schumann >> wrote: >> >>> On Fri, 02 Aug 2013, Qiang Wang writes: >>> >>> > Hi, >>> > >>> > I'm struggling with encode/decode stri

Re: [R] Plotting zoo objects with chron axis

2013-08-09 Thread Enrico Schumann
or when time zones are relevant.) Perhaps something like this: require("zoo") plot(merge(a, b), plot.type = "single", yaxt = "n") midnight <- ISOdatetime(2013, 1, 1, 0, 0, 0, "GMT") sq <- seq(0, 86400, by = 300) axis(2, at = sq, label

Re: [R] Problem adding lines to a plot, when y is defined

2013-09-09 Thread Enrico Schumann
[i, 4] | var[i,6]) > points(i, var[i, 2], pch=4) > } > > --> the result is displayed in attachment "Plot2.pdf" > > The same problem appears if instead of > > as.Date(var[, 1], origin="1899-12-30") > > I use > > var[, 1] > > to de

Re: [R] temp seems ineffective in SANN (optim)

2013-02-27 Thread Enrico Schumann
ible code example (as the posting guide asks you to); otherwise I doubt you will get much help. In any case, your objective function (OF) should not evaluate to NaN. The algorithm decides whether one solution is better or worse than another solution by looking at the OF value. NaN translates into &q

Re: [R] quadprog issues---how to define the constriants

2013-03-19 Thread Enrico Schumann
> eps, in which eps is the minimal weight that would be sufficiently greater than zero in your application.) > Do I put the right constraints ? > > Could you help figure out it. Thanks in advance. > > Jiting > Regards, Enrico -- Enrico Schumann Lucerne, Switzerland http://en

Re: [R] Vectorized code for generating the Kac (Clement) matrix

2013-04-26 Thread Enrico Schumann
) identical(K3, K1) ##user system elapsed ## 0.132 0.028 0.161 ## ##user system elapsed ## 0.024 0.048 0.071 ## -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing

Re: [R] Chron format question h:m not working

2013-05-01 Thread Enrico Schumann
the problem? I doubt it: (h, m) is not a _permutation_ of {h, m, s}. Enrico > > Thanks for all of the help. > > Stephen > > -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list h

Re: [R] Fit a standardized generalized hyperbolic distribution to my data?

2013-05-13 Thread Enrico Schumann
tig ist" means that "delta <= 0" does not evaluate to TRUE or FALSE, but NA. > > Thanks a lot for your help! > > > -- > Neumann, Conrad > -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-pr

Re: [R] Unexpected behavior of "apply" when FUN=sample

2013-05-14 Thread Enrico Schumann
x) The result is only counterintuitive (or inconvenient, perhaps) in the special case in which apply is supposed to return an array that has the same dimension as its input. More generally, you will do something like apply(test, 1, median) apply(test, 1, function(x) list(sum = sum(x), valu

Re: [R] R help: Batch read files based on names in a list

2013-05-15 Thread Enrico Schumann
") etc. and apply a function to do this in a more automated fasion? > This would involve using the list value in the directory path to read in > the file i.e. Something like this? files <- dir("my_directory") for (f in files) { ## do something with file 'f' }

Re: [R] Execution of larger blocks of pasted code often fails?

2013-05-28 Thread Enrico Schumann
na.omit(trades(rownames(s), s$Price, s$St)) : could not find function "trades" But as others have already pointed out, it is better to '?source' code, or to use an editor that can push code chunks directly to R. -- Enrico Schumann Lucerne, Switzerland http://enricoschum

Re: [R] Execution of larger blocks of pasted code often fails?

2013-05-28 Thread Enrico Schumann
On Tue, 28 May 2013, Enrico Schumann writes: > On Tue, 28 May 2013, Mark Breman writes: > >> Hello List, >> >> When i paste a large block of R code from an editor to the R command line >> the execution of the code will often fail at some point because it is

  1   2   >