Displaying 20 results from an estimated 1000 matches similar to: "Rendering a view from a model"
2007 Dec 04
2
Bug: NoMethodError: private method `gsub'' called for nil:NilClass
Hi there.
I''m using RedCloth as part of a social network''s blog system.
I came across the following bug when an img tag with the src attribute
is inputted, and filter_html is set to true.
I have pasted the code sample below.
>> require ''RubyGems''
=> true
>> require ''RedCloth''
=> true
>>
2006 Oct 03
8
Ferret install, rake failing on make
I''m currently trying to install the latest version of Ferret (0.10.9)
on my Ubuntu Dapper (6.06) system. I have tried the gem, but it does
not generate the ferret_ext.so file. Ideally I would prefer to install
from the gem, but if source works, I''m fine with that too.
I am now trying an install from source, but when I run the command ''$
rake ext'' I get the
2008 Aug 02
3
Bubble plots
Is there a way to create a 'bubble plot' in R?
For example, if we define the following data frame containing the level of y observed for 5 patients at three time points:
time<-c(rep('time 1',5),rep('time 2',5),rep('time 3',5))
2010 Aug 09
3
New build 2.0.5
Just applied some changes from Adam and Dylan and uploaded a new build. Good
stuff guys, thanks.
Get 2.0.5 here:
http://github.com/mapstraction/mxn/downloads
Derek
--
Derek Fowler
m. +44 (0) 7966 512 369
e. dezfowler at gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Feb 13
2
Bubble Plot with Pie Charts
Hi there!
I have seen that someone had this question some years
before, but there
was only a rough answer to it and I was wondering if
actually someone
was able to accomplish it or maybe even wrote a
function...
How do you make a bubble plot where you have pie
charts instead of bubbles?
I have a geographic map and need to plot
attribute-sized pie charts
representing a second attribute at
2005 Jul 21
2
bubble.plot() - standardize size of unit circle
Hello,
I wrote a wrapper for symbols() that produces a
bivariate bubble plot, for use when plot(x,y) hides
multiple occurrences of the same x,y combination (e.g.
if x,y are integers).
Circle area ~ counts per bin, and circle size is
controlled by 'scale'.
Question: how can I automatically make the smallest
circle the same size as a standard plot character,
rather than having to
2008 Sep 13
4
bubble(circle) plot help.
I need help creating a bubbleplot, like a simple pseudo three dimensional scatterplot of circles whose sizes index a 3rd variable. I initially came across this at http://addictedtor.free.fr/graphiques/graphcode.php?graph=73 but the circleplot function does not exist in fbasic as listed in the document.
_________________________________________________________________
2006 Feb 17
4
showing the integrated number by point size
Is there any function to show the points like this example of SPSS?
http://biostatistic.de/temp/reg.jpg
The point size should represent the number of data at this point.
with regards
Knut Krueger
2006 Oct 16
0
user engine session id re-generating on post
I get a redirect from user_engine when using
curl -i -X POST -d "<xml_data></xml_data>"
http://<webpage>?_session_id=ABC
If I use
curl http://<webpage>?_session_id=ABC
the GET works fine.If it was a routing issue, I would
expect the GET not to work.I also removed the -i, but no difference.
I''m using
if request.post?
---
end
if request.get?
---
end
2006 Apr 26
3
DOM events not firing in IE6 with floated divs
Hi All
Not strictly Scriptaculous but I came across this whilst trying to implement
some Scriptaculous code. I am hoping some XHTML guru out there might be able
to shed some light.
If you load up the attached file in IE6, you''ll see the events only fire in
the middle section of the title bar when your over the border ! - FF1.5 is
fine..
Any thoughts / comments appreciated..
Cheers
2005 Dec 15
2
Why is bubbles() creating empty png graphs?
This code below produces empty XXX.png files - if I use plot(), it works
and if I enter the commands
png(filename=fn)
bubble(positions, do.sqrt=FALSE, main=q)
dev.off()
manually, it works as well.
I am lost - any help appreciated.
The weird thing is that it worked before I made some changes... (I don't
have a copy of the working version...).
R version:
platform i686-pc-linux-gnu
arch
2004 Sep 21
1
bubble plots
Dear all,
I'm used to draw bubble plots (gstat) to get a first view of my spatial
marked data, but I can't find a way to label legend with marks after having
replaced them by a numeric scale.
I have a data frame with numeric coords and factors:
> names(data)
[1] "x" "y" "bloc" "sub" "inoc"
2002 Aug 16
2
change_to_user: Invalid vuid used 101
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello!
I'm running into an issue where users log into their Win2k/NT4.0
workstations, download their profiles off of our Samba 2.2.5 server,
map home, miscellaneous shares, and printers on it, and then randomly
during their session they cannot open these remote devices. They
receive an "Access Denied" message when trying to do anything
2005 Nov 15
2
Project idea
Hi all
I have an idea for a project that I think would be very useful using
web 2.0. Are there any people out there who may be interested?
Sounds a little vague at the moment but I am not certain how much info
I can divulge at this point.
I would like the project to be a free-to-use one.
Regards,
William
2003 Nov 27
2
File corrupted when copy one large file(10G) from NT4.0 to samba
Hi All,
When I copied one file from NT4.0 to Linux through samba with 'copy'
command in NT4.0, the file was always corrupted. Size of the file copied
into Linux was always about 4G. If I copied it through Windows Explorer,
it was OK. It seems samba cannot process the "Write Raw" request sent by
'copy' command correctly when file size is larger than 4G bytes. Thanks
2013 Sep 20
2
[LLVMdev] Does Mips resolve hazard in pre-ra-sched or post-ra-sched?
Akira,
Thanks you for response.
I understand Post-RA schedule make uses of scoreboardHazardRecognizer. But
I found mips codes are good enough by default. basically, I can not easily
eyeball any bubbles.
I don't understand how they can do that without post-RA-sched.
pre-ra-scheduler eg. (SelectionDAG/ScheduleDAGRRList.cpp) has little
information and they can only schedule node in topology
2013 Sep 19
2
[LLVMdev] Does Mips resolve hazard in pre-ra-sched or post-ra-sched?
Hi, LLVM,
I found LLVM codegen has 3 passes for instruction scheduling:
1) pre-ra sched
2) post-ra sched
3) mi sched.
for RISC machines, there are data hazard cases appear only after Register
Allocation(RA). for example, $t0 is used immediately after writing(RAW):
ld $t0, MEM
add $t2, $t0, $0
There may be one or more stall in pipeline. Instruction scheduler can
detect this kinds of conflict
2006 Oct 05
1
quota dict (mysql)
Hi,
I have dovecot configured to make use of the dict (mysql) plugin in
order to keep track of the used quota.
First, as you can see in the mysql table output below it seems that
values aren't stored correctly.
Secondly I get all kinds of database related errors in my mail logs.
The (relevant) sections of the configuration files are also included below.
My question is, what am I doing wrong?
2007 Aug 29
12
ruby on rails search engine
He all,
who can recommend me search engine(search for different models) for my
web-site?
ps: i know about ferret for example, but maybe there are some others?
Thank you
--
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
2009 Jul 20
5
what is meaning of the bubbles in boxplots?
Hi ,everyone ,
I draw some boxplot figure with the command "boxplot".But in the
figure,there are some bubbles at the top part of the figure.
Can anyone tell me what the correct meaning of these bubbles?and how to
remove it?
--
TANG Jie
Email: totangjie@gmail.com
Tel: 0086-2154896104
Shanghai Typhoon Institute,China
[[alternative HTML version deleted]]