Displaying 11 results from an estimated 11 matches for "personlist".
2007 Feb 05
1
Build error with last R-devel tarball
...ld stamp to DESCRIPTION
installing NAMESPACE file and metadata
installing R files
Error in namespaceExport(ns, exports) : undefined exports :?, CRAN.packages,
Rprof, Rprofmem, RShowDo
c, RSiteSearch, URLdecode, URLencode, alarm, apropos, argsAnywhere,
assignInNamespace, as.roman, as.p
erson, as.personList, available.packages, browseEnv, browseURL, bug.report,
capture.output, checkCRAN
, chooseCRANmirror, citation, citEntry, citHeader, citFooter, close.socket,
combn, compareVersion, co
ntrib.url, count.fields, data, data.entry, dataentry, de, de.ncols, de.restore,
de.setup, debugger, d
emo, download....
2005 Apr 18
2
citation() chops "Roeland " (PR#7797)
...5)
If name ends with "and", such as "Roeland Lastname", citation() will chop "and"
as a separate word giving "Roel and Lastname". This is the case in the upcoming
release of vegan (1.6-8) just submitted to CRAN. Basically, this seems to happen
in utils:::as.personList.default
> unlist(as.personList("Roeland Lastname"))
name.first name.middle name.last name.first name.middle name.last
"" "" "Roel" "" "" "Lastname"
and the culprit line seems t...
2012 Jul 25
1
[LLVMdev] [RFC] YAML I/O
...nt8_t age;
bool speaks_french;
void yamlMapping(IO &io) {
requiredKey(io, name, "name");
requiredKey(io, age, "age");
optionalKey(io, speaks_french, "speaks-french");
}
};
typedef Sequence<Person> PersonList;
typedef DocumentList<PersonList> PersonDocumentList;
That's it. The yamlMapping() method is processed by both the Input and Output to properly handle key-values in a yaml mapping. The Sequence and DocumentList templates are subclasses of std::vector<>.
The data structures a...
2007 Jun 07
1
Search results
...new to Ruby, I am a Java expert.
I don''t know how to handle the results of a search... I have read a lot,
but nobody seems to give examples of that.
Do I get an ArrayList from a Table?
Do I get fields?
How can I identify them?
Do I have to parse them to a Class like: Person user =
Person(personlist.get(i));?
Please, help me...
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JY...
2014 May 22
1
citEntry handling of encoded URLs
The following citEntry includes a url with %3A and other encodings
citEntry(entry="article",
title = "Software for Computing and Annotating Genomic Ranges",
author = personList( as.person("Michael Lawrence" )),
year = 2013,
journal = "{PLoS} Computational Biology",
volume = "9",
issue = "8",
doi = "10.1371/journal.pcbi.1003118",
url =
"http://www.ploscompbio...
2023 Apr 08
0
Time to add is.formula() to 'stats'?
..."POSIXct" "POSIXlt" "dendrogram"
[5] "difftime" "dist" "formula" "graphicsAnnot"
[9] "hclust" "hexmode" "octmode" "person"
[13] "personList" "roman"
3. For which Z does is.Z() just call inherits(., "Z")?
[1] "data.frame" "factor" "numeric_version" "ordered"
[5] "package_version" "raster" "relistable" "tab...
2008 Nov 17
1
CITATION file with multiple citEntry(): no BibTeX produced by citation()
...packageDescription("heplots")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s", meta$Version)
citEntry(entry = "Manual",
title = "{heplots}: Visualizing Tests in Multivariate Linear Models",
author = personList(as.person("John Fox"),
as.person("Michael Friendly"),
as.person("Georges Monette")),
year = year,
note = note,
url = "http://CRAN.R-project.org/package=heplots",
textVersion =
paste("John Fox and Michael Fri...
2005 Jun 20
0
R 2.1.1 is released
...;type' correctly to
install.packages().
o Printing the result of an unbalanced model.tables() call
sometimes got confused if terms() had rearranged interaction
terms. (PR#7829)
o .Platform$pkgType was wrong on the CRAN MacOS X build, and
.install.macbinary() was missing.
o as.personList() as used by citation() got confused by names
containing "and". (PR#7797)
o Subscripting an array by a matrix containing zero or negative
values or the wrong number of columns was not handled
consistently. (PR#7824)
o select.list(multiple=TRUE) now detects and tries again fo...
2005 Jun 20
0
R 2.1.1 is released
...;type' correctly to
install.packages().
o Printing the result of an unbalanced model.tables() call
sometimes got confused if terms() had rearranged interaction
terms. (PR#7829)
o .Platform$pkgType was wrong on the CRAN MacOS X build, and
.install.macbinary() was missing.
o as.personList() as used by citation() got confused by names
containing "and". (PR#7797)
o Subscripting an array by a matrix containing zero or negative
values or the wrong number of columns was not handled
consistently. (PR#7824)
o select.list(multiple=TRUE) now detects and tries again fo...
2005 Jan 09
3
R-etiquette
I'm about to present a report (for internal use of governmental agency). I used extensively R , contibuted packages, as well as communications on the R-list
As well as citing R, I would like to know how to cite the contributed packages (it is not so easy, as some have been used exensively, other marginally, some are called from another package and some were not used as softwares but gave me
2014 Mar 05
1
[PATCH] Code coverage support proof of concept
..., Rprofmem, RShowDoc,
+export("?", .DollarNames, CRAN.packages, Rcov_start, Rcov_stop, Rprof, Rprofmem, RShowDoc,
RSiteSearch, URLdecode, URLencode, View, adist, alarm, apropos,
aregexec, argsAnywhere, assignInMyNamespace, assignInNamespace,
as.roman, as.person, as.personList, as.relistable, aspell,
diff -ruN R-devel/src/library/utils/R/Rcov.R R-devel-cov/src/library/utils/R/Rcov.R
--- R-devel/src/library/utils/R/Rcov.R 1970-01-01 01:00:00.000000000 +0100
+++ R-devel-cov/src/library/utils/R/Rcov.R 2014-03-03 16:08:45.739453368 +0100
@@ -0,0 +1,27 @@
+# File src/library...