Displaying 2 results from an estimated 2 matches for "myobject2".
Did you mean:
myobject
2009 Jul 09
2
X-axis labels not displayed when changing ylim
...par("usr")[3] - 2, srt=45, adj=1,labels=mylabels,xpd=T,
cex=0.8, font=2)
axis(side=2, las=1, cex.axis=0.8, font=2)
I set up the ylim from 0 to 70 for plotting that object "myobject1" ->
works well.
However, when i try to use the same script with another set of data
"myobject2" (same number of points, same labels, but different
values...) that ranges from 0 to 2 (ylim changed to "c(0,2)"), the
labels on the x axis disappear...
When i try to run the same lines for "myobject2" but putting the ylim
higher "c(0,50)", the labels on the x...
2004 Nov 18
5
Lexical Scoping: eval(expr,envir=)
Hi R-listers,
I am trying to better undertand what we would call "functional paradigm"
use of S/R to better map my programming activities in other languages.
This little function is aimed to create an object (at the end end, it would
have it's own class):
--
myObject =function(){
list(
a=1,
foo=function(b)
{
cat("b:",b)