similar to: Action ''display'' doesn''t work in 0.10.0

Displaying 20 results from an estimated 1000 matches similar to: "Action ''display'' doesn''t work in 0.10.0"

2002 Jul 09
3
writing to a png file with a script
Dear R-freaks, I am new to R and loke to write plots directly to a file with a script in batch-mode. the following error occured: # writing section > x11() Error in x11() : the x11 device has not been loaded Execution halted I do not know what to do! thanks for your help cheers steph -- Linux: the operating system with a CLUE... Command Line User Environment.
2002 Sep 02
2
ifelse behavior
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dear R-Users, I cannot understand the behavior of ifelse. I have a vector blah > str(blah) List of 14 $ index.s : num 100 $ index.u : num 100 $ index.t : num 100 $ yabstand.s: num NA $ yabstand.u: num NA $ modal.s : int 8 $ modal.u : int 71 $ modal.t : int 21 > > str(blah$index.s) num 100 > everything seems OK. when
2002 Jul 29
2
Database-conversion
Dear R-Users, I store my data in an Postgres-table. I can connect with Rdbi.PgSQL, that is no the problem. The problem is the NA-Values. No-data-values are coded as -9999 in the table. But when I extrct them with any SELECT-statement, the -9999-values are treated as normal vectors. How can I tell R not to fetch the datasets containig -9999-values? thanks for your help stephan -- Linux: the
2002 Aug 02
2
variables inside an Rdi-select statement?!
Dear R-users, I would like to use an environment variable inside an SELECT-statement from R to a postgres-db, but it will not work and so I need some advice from you. <code> ezg <- Sys.getenv("EZG") connect <- dbConnect.PgSQL(host="localhost", user="username", dbname="dbname") query <- dbSendQuery(connect, "SELECT ezg.s FROM ezg WHERE
2006 Jan 16
3
routing to controller inside module
Hey, am i to stupid to find the information about how to route to a controller in a module? Maybe module support has gone! The controller is under: app/controllers/admin/my_controller.rb The my_controller.rb file looks like this: module Admin class MyController def index render :text => ''Hello!'' end end end How does a route to all controllers under module
2007 Mar 26
2
imaps listen only at localhost
Hello list, I try to get dovecot listen only at localhost. I try listen localhost:993 and it did not work. The installation I made from http://holl.co.at/howto-email/ How it is possible that dovecot with imaps only work on localhost? Thanks for the help. Best regards Dirk
2002 Jul 21
3
boxplot(): formating median in another linethickness?
Dear guRus, I want to do some boxplots, but the median sould appear in another line-thickness and another color. I do not know, what to do in order to realise my wishes. Sorry for that question, but I am new to R. cheers steph -- Linux: the operating system with a CLUE... Command Line User Environment. -------------------------------------- Stephan Holl GnuPG Key-ID: 11946A09 ICQ#
2005 May 30
2
Migration from pop3 to imapd
Dear list, I am planing to set up dovecot-imapd on my production-mail server which currently only runs pop3 via qpopper on debian-sarge. It would be best, if I could only use imapd and use the existing pop3- server (qpopper) as it is. Is this possible? Can the user both use pop3 (qpopper) and imapd (dovecot) in parallel then? Where does dovecot-imapd store its mails? Does it store its mail in
2002 Jul 10
5
plotting only text as a table
Dear R-Gurus, I am preparing a multiple-plot-sheet with 2rows and 2 columns, but there are actually only 3 plots to plot. the 4. part of my sheet should contain a table with simple statistic values like n, mode, standard deviation.... I cannot handle to plot the information in the plot. the summary() function prints it to the xtrem instead of the plot. Here is an example-plot with the 3 plots
2001 Feb 09
1
Bug in auth-options.c
Hi, There's a nasty bug in auth-open.c that causes all options in a line of authorized_keys to be applied to all subsequent lines without options. IMNSHO this clearly shows the evil of global variables, and using extern whatever as a means of information sharing. Cheers, Han Holl --- auth-options.c.orig Fri Feb 9 14:14:51 2001 +++ auth-options.c Fri Feb 9 14:18:43 2001 @@ -57,11 +57,12
2011 Jan 02
1
Clusteranalysis Chi-square test and SingleLinkage
Hi The short version of my questions is this: How can I run a chi-square test over a matrix (table) to get the distanaces between rows and then run a SingleLinkage (or other fusion algorithm over the resulting table? ------------ The long-version of my question: My data consists of different data of different countries so I have stuff like how many people can read, write in X,Y,Z countries
2006 Jul 30
4
Dovecot copy with imapsync
Hi List, I am trying to migrate my dovecot 0.9 (mbox-Storage) to 1.0rc2 with maildir-storage using imapsync. I cannot manage to copy the emails from one server to the other, however the dry-run from imapsync works nicely. Is it possible to make dovecot more verbose to see what is happening (or not happening)? Thank you very much. Best Stephan
2007 Feb 28
1
Any reason not to further restrict the action names hidden by default?
A couple of years ago, no objections were voiced to a proposed patch of ActionController that would allow controllers to have methods with the same names as Object''s methods (currently, ActionController::Base.hidden_actions, as called by action_methods, prevents this). Such a change is of interest to me since I just blew some time figuring out why rails wasn''t finding a
2005 Jun 13
3
recycle with debian-package of sambe 3.0.10
Hello Stephan, Monday, June 13, 2005, 12:58:54 PM, you wrote: SH> I am struggeling around with the permissions of the recycle-vfs-module. SH> While working mostly good( placing deleted files inside the .recycle- SH> folder), the touch-option does not work. I am experiencing the same problem. The recycle vfs module is quite buggy, IMHO. The touch option does not seem to work,
2006 May 05
11
Listing Actions
OK, call me crazy, but am I the first one to want to list out the actions that are available @ runtime? Anyone else come across this yet? Am I crazy? Well, yes, but... -- Posted via http://www.ruby-forum.com/.
2006 May 07
0
NoMethodError trying to get ApplicationHelper method from a functional test
I am a little confused by the includes I suspect. In the book, it states that runtime environment will load the directories app, app/models, app/controllers, app/helpers, app/apis, components, config, lib, vendor and vendor/rails/*. However, when I try to access my "current_project" public method, it fails with a NoMethodError. What is even stranger is that I can use reflection to find
2004 Nov 18
0
Ruby 1.8.2 breaks dispatch.fcgi
Hi, dispatch.fcgi does: require ''fcgi'' FCGI.each_cgi { |cgi| Dispatcher.dispatch(... Because each_cgi is only in fcgi.rb, this is dependant on finding fcgi.rb first. Rub 1.8.2 shows the following $LOAD_PATH /usr/lib/ruby/1.8/i386-linux-gnu /usr/lib/ruby/site_ruby/1.8/i686-linux-gnu /usr/lib/ruby/site_ruby/1.8 /usr/lib/ruby/site_ruby/1.8/i686-linux /usr/lib/ruby/site_ruby
2001 Feb 19
0
Restarting with kill -HUP
Hi, If sshd is started with 'sshd', restarting with kill -HUP will fail. I've included the most obvious patch, but making sure that the full pathname is in saved_argv[0] just might be more secure. Cheers, Han Holl --- sshd.c.orig Mon Feb 19 10:55:54 2001 +++ sshd.c Mon Feb 19 10:56:15 2001 @@ -208,7 +208,7 @@ { log("Received SIGHUP; restarting.");
2007 Aug 25
2
Migrate 0.99 MBox into 1.0rc15-2
Hello, I have old MBOX-trees from a dovecot-0.99-installation. I would like to integrate them into dovecot 1.0.0rc15 with Maildir. Sadly the old dovecot is no lonfger running, otherwise imapsync could be used. Does anybody can give some hints how to start? TIA Stephan
2004 Dec 03
1
Error reading logon.bat sript
Dear Samba-users, I cannot manage to make samba read my logon.script for windows clients where basicaly networkdrive-mapping is done. Samba complaines about not having permission... Error: switch message SMBntcreateX (pid 28286) [2004/12/03 11:27:31, 3] smbd/dosmode.c:unix_mode(110) unix_mode(logon.bat) returning 0744 [2004/12/03 11:27:31, 3] smbd/open.c:open_file(173) Error opening file