Steven Pav
Steven Pav
+1 on this. Or at least some directions regarding how to turn _e.g._ the `blog` category page into a summary of posts (time ordered, author and excerpt, and so on).
May have to resolve this at some point. The advice [here](http://r.789695.n4.nabble.com/quot-found-4-marked-UTF-8-strings-quot-during-check-of-package-but-where-td4729560.html) is not terribly helpful.
_cf_ [CBU](https://coolbutuseless.github.io/2018/12/10/r-packages-internal-and-external-data/) on this topic.
Not my best work, but here's the hack: ``` # packages is a char array of the form # c('package','package >= version') p_i_v_new
Thanks for your interest in the package. I am not sure how I would approach this problem. I also am not so familiar with the Q-Z decomposition. Can this be...
Thanks for opening this issue, and the others. I am back from vacation and ready to start in on these. For this one, it seems that `madness` needs a way...
I think the problem is that `c` is a method which dispatches on its first argument. Thus `c(0,xmad)` and `c(xmad,0)` will call different methods. As you observed above, the first...
Well, I have a unit test for it now, but have no idea how to get around the generic dispatch in `c()`. I'll have to ask on SO.
In the meantime, since the implementation of `c` merely calls `rbind`, use `rbind` instead of concatenation. This is more fitting with the design goal that `madness` objects track arrays of...
I am going to recommend using `rbind` instead of `c` for now; this is more consistent with the philosophy that the values in a `madness` object have dimension associated with...