Displaying 4 results from an estimated 4 matches for "maxpag".
Did you mean:
maxpat
2017 Jan 09
1
problem with print.generic(x)deparse(substitute(x))
...sk my real question: Is there a way to
modify print.findFn{sos} so I can print "k" in the second line of the
HTML from the following:
(k <- findFn('spline', 1))
Currently, the HTML starts as follows:
findFunction Results
call: findFn(string = "spline", maxPages = 1)
I want it to start as follows:
findFn Results
call: (k <- findFn(string = "spline", maxPages = 1))
For a package summary: installPackages(k); writeFindFn2xls(k)
When I added "ds <- deparse(substitute(x))" to "print.findFn", I
got ds...
2017 Jan 09
2
problem with print.generic(x)deparse(substitute(x))
Hi, All:
I'm having trouble getting deparse(substitute(x)) inside
print.generic to consistently
I'm having trouble getting a print.something to work
consistently. Consider the following toy example:
# Define an object of class 'dum'
k <- 1
class(k) <- 'dum'
str(k) # as expected
# Define print.dum
print.dum <- function(x, ...)
2010 Jan 23
8
The directory that I am trying to clean up is huge
The directory that I am trying to clean up is huge . every time get this
error msg
-bash: /usr/bin/find: Argument list too long
Please advise
Anas
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20100123/f6534851/attachment-0001.html>
2006 Oct 17
0
[680] trunk/wxruby2/samples/printing/printing.rb: Cleaned up to use the Ruby naming convention, added #! line, now uses Wx default ID''s in standard menu items.
...> end
</span><span class="lines">@@ -236,11 +235,11 @@
</span><span class="cx"> end
</span><span class="cx">
</span><span class="cx"> def get_page_info
</span><del>- minPage = 1
- maxPage = 2
- selPageFrom = 1
- selPageTo = 2
- [minPage,maxPage,selPageFrom,selPageTo]
</del><ins>+ min_page = 1
+ max_page = 2
+ sel_page_from = 1
+ sel_page_to = 2
+ [min_page,max_page,sel_page_from,sel_page_to]
</ins><span class="cx"> end
<...