Re: [R] R CMD check error: File `inconsolata.sty' not found

2025-02-05 Thread Enrico Schumann
saving backups to /usr/local/texlive/2024/tlpkg/backups > tlmgr: no updates available What does kpsewhich inconsolata.sty (on the command line) say? (It should show the location of the file.) The 'Installation and Administration' manual briefly discusses how to

Re: [R] [off-topic] crossword

2024-12-15 Thread Enrico Schumann
gt; On Fri, 13 Dec 2024, 04:26 Ebert,Timothy Aaron, >> > wrote: >> > >> > > I do not understand the question and I do not understand the answer. >> > > Possibly one confounds the other. >> > > >> > > -Original Message- >> >

Re: [R] aggregate produces results in unexpected format

2024-12-11 Thread Enrico Schumann
## 2 20 25 22 4 ## 3 30 35 32 4 (Though the result is a numeric matrix. But that is only one 'as.data.frame' away from a data.frame, if it has to be one.) kind regards Enrico > John David Sorkin M.D., Ph.D. > Professor of Medicine, University of Maryla

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

2024-10-21 Thread Enrico Schumann
Dear all, version 2.10-0 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] Since the last announcement on this list in 202

[R] [R-pkgs] PMwR 1.0 (Portfolio Management with R)

2024-10-21 Thread Enrico Schumann
rico [1] https://enricoschumann.net/R/packages/PMwR/manual/PMwR.html [2] https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3374195 -- Enrico Schumann Lucerne, Switzerland https://enricoschumann.net ___ R-packages mailing list r-packa...@r-project

Re: [R] Change data frame to time series data

2024-10-02 Thread Enrico Schumann
# 2014-01-01 00:02:003 But be sure to read about ?as.POSIXct; in particular, the handling of timezones/daylight-saving time. > [[alternative HTML version deleted]] Please send plain-text messages to this list; otherwise, the results become hard to read. -- Enrico Schumann Lucerne, Switzer

Re: [R] How to install this package

2024-10-01 Thread Enrico Schumann
on is still more than 10 years old. But for what it is worth, I can install this version on Ubuntu 24.04, with R 4.4.1. In case you need only specific functionality from the package, you might be able to extract those bits either from the archived tarball, or from the source code at https://r-forge.r-

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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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

[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] 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 __

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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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 ___

[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] 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

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] 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] 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] How to generate mutiple set of samples in R?

2019-06-05 Thread Enrico Schumann via R-help
this guide and follow its advice. MT> and provide commented, minimal, self-contained, reproducible code. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https

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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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

[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] 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] 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] 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] 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] 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] 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] 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] 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"]])

[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] 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

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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] legendre quadrature

2014-05-01 Thread Enrico Schumann
0]] > chebyshev.c.quadrature(integrand, order.rule, lower = -1, upper = 1) > > Thank you > Diba > -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list https://stat.ethz.ch/m

Re: [R] Getting a particular weekday for a given month

2014-04-07 Thread Enrico Schumann
t's available from here http://enricoschumann.net/R/packages/PMwR/index.htm If you are on a Unix-type system (or have Rtools installed on Windows), you can directly install the package from source: install.packages('PMwR', repos = 'http://enricoschumann.n

Re: [R] Environmental problems.

2014-02-25 Thread Enrico Schumann
ceived. (I don't really grok environments. I just try > things until *something* works!) > > cheers, > > Rolf Turner > I did not follow your example, neither do I use the deSolve package; but why not pass an environment as an argument? ## some iterative function that tak

Re: [R] Selecting individuals to maximize the correlation of two variables

2014-01-11 Thread Enrico Schumann
only...) http://enricoschumann.net/NMOF.htm#NMOFmanual -- 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://www.R-project.org

Re: [R] How can I find nonstandard or control characters in a large file?

2013-12-09 Thread Enrico Schumann
'non-standard characters' are. But perhaps ?tools:::showNonASCII, which uses ?iconv, can help you. (Please note the warnings and caveats on the functions' help pages.) -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __

Re: [R] save table to txt file in a printable form

2013-11-19 Thread Enrico Schumann
> > Regards > Alex > [[alternative HTML version deleted]] Please send plain-text emails. -- Enrico Schumann Lucerne, Switzerland http://enricoschumann.net __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help

Re: [R] Yield to maturity in R

2013-10-31 Thread Enrico Schumann
On Wed, 30 Oct 2013, Katherine Gobin writes: > Dear R forum, > > Just want to know if there is any function / package in R which will > calculate Yield to Maturity in R for a given bond? > > Regards > > Katherine require("sos") findFn("yield to m

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] 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

  1   2   >