search for: names__

Displaying 3 results from an estimated 3 matches for "names__".

2017 Jan 09
2
[Bug 2663] New: [man] sshd_config(5) AuthenticationMethods segment clarification, proposal and questions
...ail.de Segment's first paragraph reads: AuthenticationMethods ... This option must be followed by one or more __comma-separated lists__ of authentication method names. ... Suggested change ... This option must be followed by one or more lists of __comma-separated authentication method names__. ... Rationale: The current wording is misleading; not the lists are comma-separated, but their elements; any pair of neighbouring lists is space-separated. ---------- My approach was: Taking the example of the second paragraph's first sentence (without considering the subsequent explanation)...
2019 Sep 18
2
'==' operator: inconsistency in data.frame(...) == NULL
...lar for data frames. Here's an extended "testing" script which takes into account some of the above : ##----------------------------------------------------------- d0 <- data.frame(a = numeric(0)) # zero length data.frame d00 <- unname(d0) # zero length data.frame __without names__ d3 <- data.frame(a=1:3) # non-empty data.frame d30. <- d3[,FALSE] # 3 x 0 -- take into account, too ! d30 <- unname(d30.) m01. <- matrix(,0,1, dimnames=list(NULL,"a")) # 0 x 1 matrix with dimnames m01 <- unname(m01.) m00. <- matrix(,0,0, dimnames=list(NULL,NULL)) # 0...
2019 Sep 11
2
'==' operator: inconsistency in data.frame(...) == NULL
Sorry, I can't reproduce the example below even on the same machine. However, the following example produces the same error as NULL values in prior examples: > setClass("FOOCLASS", +????????? representation("list") + ) > ma = new("FOOCLASS", list(M=matrix(rnorm(300), 30,10))) > isS4(ma) [1] TRUE > data.frame(a=1:3) == ma Error in