Displaying 20 results from an estimated 10000 matches similar to: "Bug in the parser (?) (PR#13504)"
2019 May 16
3
print.<strorageMode>() not called when autoprinting
In R-3.6.0 autoprinting was changed so that print methods for the storage
modes are not called when there is no explicit class attribute. E.g.,
% R-3.6.0 --vanilla --quiet
> print.function <- function(x, ...) { cat("Function with argument list ");
cat(sep="\n ", head(deparse(args(x)), -1)); invisible(x) }
> f <- function(x, ...) { sum( x * seq_along(x) ) }
2008 Dec 22
2
... (dotMethods) and cbind/rbind: how to give the signature?
Dear List,
I'm struggling with the signature writing cbind/rbind functions for a S4
class.
First of all, I'm very happy that it is now possible to dispatch on ...
I follow the example for "paste" in ?dotMethods, which works as far as this:
### start example
setClass ("cbtest",
representation = representation (data = "data.frame"),
2004 Aug 06
2
web stats
hello,
i am involved in a user-modeling research. i need to collect the following
information while icecast is serving music:
client user-id
start time for client
end time for client
user id
songs listened to
<p>can i get these info by parsing the web stats?
thanks,
deva
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To
2004 Aug 06
2
web stats
hello,
i am involved in a user-modeling research. i need to collect the following
information while icecast is serving music:
client user-id
start time for client
end time for client
user id
songs listened to
<p>can i get these info by parsing the web stats?
thanks,
deva
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To
2018 Jan 10
4
R-hts
dear all,
i need some help in structuring my data file for a hierarchical time series
analysis.
can someone help please ?
i have a 600 row database in the nature of a panel data, with 3 time series
values of interest. the data also has 4 classificatory variables comprising
a code for each entity in the panel, a value for time (year), and
classification of type of entity and a further sub-group
2004 Nov 28
1
Is this a bug in the parser? (PR#7395)
# Your mailer is set to "none" (default on Windows),
# hence we cannot send the bug report directly from R.
# Please copy the bug report (after finishing it) to
# your favorite email program and send it to
#
# r-bugs@r-project.org
#
######################################################
<<insert bug report here>>
Is this a bug in the parser?
Specifically, the trace
2004 Oct 14
5
beginner questions: objects and scripts
hi,
I got some questions on using R,
1. How do I check and edit definition of an object?
for example,
>x <- 1:100
then after a while I want to check how x is defined.
list(x) or whatever functions I know only list its
content, but I want to see its definition, without
scrolling up and down, and edit it like "fixing" a
function.
2. How to save my work in current session as a
2010 Jan 20
1
function curve() (PR#14191)
Full_Name: Georgi Boshnakov
Version: 2.10.1pat
OS: Windows XP
Submission from: (NULL) (130.88.123.205)
When calling programmatically function curve() from package:graphics I
experienced some trouble since it reports
stop("'expr' must be a function or an expression containing 'x'")
even if expr is "expression". Naturally, the user message uses
2015 Apr 17
3
Redefining {
I am curious if anyone knows of R code where the "{" function is
redefined in a useful way. Or "(" for that matter.
Thanks
Mick
2004 Aug 06
2
icecast2 and static files
If you check this unofficial howto at http://quasi.ksl.com/icecast/ then you
will find an example xml config file for ices which allows you to server
static music files. However, you will need to remove the 'encoding' section of
the file as on my system it would reencode on the fly as long as that section
existed.
--thanks
Michael Edwards
http://www.walledcity.ca
>===== Original
2018 Mar 30
2
Question
Thanks for the help. Will work on that.
Cliff Witherspoon
Red Arrow Entertainment
864-613-4201
> On Mar 29, 2018, at 5:37 PM, Richard Elen <relen at brideswell.com> wrote:
>
> If you can split the feed, eg with Audio Hijack, you could feed the audio into a streaming audio client, such as Nicecast (mp3 only, $, due to be discontinued), LadioCast (mp3/AAC, free, App Store) or BUTT
2018 Jan 10
2
R-hts
Hello,
It's difficult to help without a sample of the format. Can you provide a
short sample like 10 lines and a few columns.?
Best regards,
Jeremie
On Wed, Jan 10, 2018 at 6:12 PM, John Kane via R-help <r-help at r-project.org>
wrote:
> Have a look at http://stackoverflow.com/questions/5963269/how-to-make-
> a-great-r-reproducible-example
> and
>
2018 Jan 10
0
R-hts
Hello,
Have a look at the plm package
https://cran.r-project.org/web/packages/plm/index.html
It has a convenient way to structure your data into panel according to some
id.
Best regards,
Jeremie
On Wed, Jan 10, 2018 at 5:41 PM, deva d <devazresearch at gmail.com> wrote:
> dear all,
>
> i need some help in structuring my data file for a hierarchical time series
> analysis.
2009 Jan 28
3
putting match.call to good use
[This email is either empty or too large to be displayed at this time]
2004 Aug 06
2
song boundaries
On Tuesday 25 February 2003 10:31, Deva Seetharam wrote:
> hello all,
>
> in icecast2, how can i determine when one *MP3* song ends and the next one
> starts?
>
> i am involved in user preferences research and i am writing a statistics
> collecting software the tracks the songs that are being played, the number
> of people listening to particular songs, genre etc.
>
>
2004 Aug 06
2
song boundaries
the metadata format is not documented officially anywhere, but really isn't
terribly complicated...
http://www.smackfu.com/stuff/programming/shoutcast.html
hows a nice concise description of it, and was the first result returned
from doing
http://www.google.com/search?q=shoutcast+metadata
oddsock
At 04:06 PM 2/25/2003 -0500, you wrote:
> > The mp3 metadata format is a nasty hack
2007 Aug 02
2
got/expects causes mental layering violation
I was, for the first time, spec''ing a class that redefined ==. And my
spec was incorrect, so == was returning false.
The result was something like:
class C
def ==(other)
false
end
end
.. C.new.should == other...
expected other, got #<C:0x7f03c454> (using ==)
But wait! Why on earth is == returning the class itself instead of
true/false? That shouldn''t be
2006 Aug 16
5
Class redefinition
Hi,
Suppose I want to redefine the Ruby String class in a Rails app. In which
file is it the most suitable to write the redefinition?
Thanks
Guillaume Carbonneau
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060816/5b0da204/attachment.html
2004 Aug 06
1
song boundaries
Deva Seetharam <deva@downstreamdigital.com> said:
> i found that too. but, imho, doesnt have all the necessary details to
> write a system that can process metadata.
>
That's the document I wrote to both read (in incoming mode) and write (to
clients) the mp3/shoutcast metadata support in icecast2. I'd say it's sufficient.
Mike
--- >8 ----
List archives:
2004 Aug 06
2
song titles
On Monday 17 February 2003 21:18, Deva Seetharam wrote:
> Hello All,
>
> while icecast is streaming a mp3 source, how is the song title info
> maintained?
>
> that is, does the source send the song title? does icecast log the songs
> that have been played?
>
This (for almost-compatibility with shoutcast - true compatibility is
difficult or impossible, since the shoutcast