Displaying 20 results from an estimated 300 matches similar to: "Modifying a package name / Build from sources (rpart)"
2009 May 29
1
Interface R <--> Processing
Dear Group members
I was wondering whether there is any interface to use processing (www.processing.org) to visualize R analyses?
If so could somebody point me to relevant ressources?
If not, are there any attempts to build such an interface / package?
Best Regards,
Simon
--
Nur bis 31.05.: GMX FreeDSL Komplettanschluss mit DSL 6.000 Flatrate und
Telefonanschluss nur 17,95 Euro/mtl.!*
2008 Feb 17
2
filled.contour with log axis
Dear all,
I would like to generate a filled.contour plot with log x and y axis,
however using:
filled.contour(as.line,log="xy")
results in a warning message.
Does anybody knos what to do?
Thanks
Thomas
2007 Nov 04
2
Fw: Creating a barplot--advice needed
Subject: Creating a barplot--advice needed
> Advice needed: I am preparing a computer program to do a barchart. Advice
> needed: Should I learn the lattice package, or try to? As a
> non-statistician, much of the terminology is unfamiliar to me. "grouping
> variable," "object of class trellis," etc. Or, is there a more easily
> learned way to do it? It is a
2007 May 06
3
Neural Nets (nnet) - evaluating success rate of predictions
Hello R-Users,
I have been using (nnet) by Ripley to train a neural net on a test dataset, I have obtained predictions for a validtion dataset using:
PP<-predict(nnetobject,validationdata)
Using PP I can find the -2 log likelihood for the validation datset.
However what I really want to know is how well my nueral net is doing at classifying my binary output variable. I am new to R and I
2013 Aug 15
1
IMAP Proxying and SSL Certificates on OpenBSD
Hi list,
?
I am currently trying to configure dovecot to act as a imap proxy in front of a Groupwise server. Because of a policy no services of the gw server may be directly served to the web. So currently this is only a security measure. Dovecot was previously used for providing sasl-auth capabilities to postfix. IMAP proxy features should be added now. Authentication backend is LDAP. OS is
2012 Jun 15
2
Looking for Speed in a Toy Simulation Example
Dear List Members
I used to play around with R to answer the following question by
simulation (I am aware there is an easy explicit solution, but this is
intended to serve as instructional example).
Suppose you have a poker game with 6 players and a deck of 52 cards.
Compute the empirical frequencies of having a single-suit hand. The
way I want the result structured is a boolean nosimulation
2006 Jan 30
8
Translating a validtion flash
I''m a belgian Rails user (Dutch is my native language). I wondered if
it is possible to translate error messages (generated by validators).
I know how to create my own error messages:
def method
content
rescue
logger.error(...)
flash[:notice] = ''My own error message"
redirect_to(...)
But where can I find the validator''s .rb files, so I can change them?
2007 Mar 31
0
X11 and linux and plotting and the vertical axis
I use R on linux and I go through exceed from a windows machine.
Depending on the amount of plots I do on a screen, sometimes the numbers
on the vertical axis
of the plots don't show up. I tried infinite of combinations of mar and
cex but nothing helps.
Yet, if instead of shooting the graphic upto the screen, I send it to a
pdf file or
a postscript file, the numbers on the vertical axis of
2013 Dec 06
1
Authentification Dovecot + Samba4
Hello list,
I am struggling with setting up dovecot 2.1.7 with samba 4.1.2 on debian wheezy. Dovecot should authenticate via LDAP, but I?cannot get it to work reliably. Sometimes auth works, sometimes not. Referals are already activated in ldap.conf ? LDAP-authentication works fine with other clients (Apache Directory Studio, ?)?
Has somebody got a similar setup running? I would love some hints
2006 Aug 02
1
Modifying Mongrel Examples
Hi,
I am tryinig to work on the Mongrel examples. I am trying to modify
the HttpResponse.
def process(request, response)
response.start do |head,out|
if request.params["REQUEST_METHOD"] == OPTIONS"
else
end
end
One can detect that the request is OPTIONS like this, but how does one
generate the custom response by using HttpResponse.
Please help.
Shubham
2006 Aug 07
2
NoMethod Error: Modifying Location of support modules
I''m trying to follow along with the Agile Development with Ruby on Rails
book and have encountered a problem with code having the following
syntax (partial class provided):
require "digest/sha1"
class User < ActiveRecord::Base
private
def self.hash_password(password)
Digest:SHA1.hexdigest(password)
end
end
I''m getting an error as:
undefined method
2006 Jul 17
0
Modifying URLs
I''d like to be able to take a URL and add or modify a param, just like
url_for does in ActionController.
However, I''d like to be able to do this for a URL taken as a string,
without a controller behind it. So I can''t just call url_for.
Any ideas? What''s the best way to do this?
--
Posted via http://www.ruby-forum.com/.
2006 Jul 21
1
rjs template modifying form_remote_tag
I would like to build a form which uses ajax on the first request, but
on a subsequent request uses the regular form_tag. The reason for
doing this is that I need a file upload in the second request, and so
I can''t use AJAX. I''ve tried using an rjs template to modify the
form_remote_tag''s id (using page.replace ''form_tag_id'', ...), but the
request
2006 Mar 24
1
Modifying a session variable from a different process?
Hi,
I''ve implemented a log in session "thing" that essentially works by
holding the model of the logged in user in a session variable, like
this:
session[:user] = user
However let''s say at this point in time, should an administrator of the
system decide to revoke this user''s account, the session variable for
that currently logged in user is still valid,
2006 Feb 03
1
modifying scaffold method
I''ve made the following changes to scaffolding.rb. Is it possible to
put those changes into some type of a plugin or helper or something,
instead of directly modifying the Rails source?
(and, btw, I think pagination should be removed from scaffolding. And
deletes should only happen on post requests. That''s essentially what
I''ve changed).
Thanks,
Joe
Index:
2006 Jan 09
1
Modifying script generated scaffold output Books/Authors
People,
For my little book library db I find the rails script generated stuff
fine for most of my needs but there is one thing I couldn''t figure
out . .
Part of the auto output of app/view/books/edit.rhtml is:
<%= start_form_tag :action => ''update'', :id => @book %>
<%= render :partial => ''form'' %>
<%= submit_tag
2005 Dec 20
2
Modifying data before update or save
Hi,
I''d like to upcase a variable before it is saved, but I''m not sure how
to access the incoming param or where this work should be performed:
In my update method, I have:
@device = Device.find(params[:id])
params[:device[macaddress]].upcase <-- problem code
if @device.update_attributes(params[:device])
....usual stuff here
''macaddress'' is the
2005 Dec 28
0
Modifying VERBOTEN_TAGS in TextHelper
Hello all,
I''m using the sanitize() method from TextHelper in my application, which
appears to use the VERBOTEN_TAGS constant to define which tags to escape
out from the HTML. I''d like to modify VERBOTEN_TAGS to include some more
tags, but I''m not sure where I would place the necessary code in my
rails app. Any ideas?
Thanks,
Kamil
--
Posted via
2009 Jan 08
1
[PATCH] ocfs2: Access the xattr bucket only before modifying it.
Hi Mark,
This is the fix for 2.6.29(introduced by uniting the bucket journal
access). Since I found no fixes-for-2.6.29 in your ocfs2.git, it is based
on your original upstream-linus.
In ocfs2_xattr_value_truncate, we may call b-tree codes which will
extend the journal transaction. It has a potential problem that it
may let the already-accessed-but-not-dirtied buffers gone. So we'd
better
2013 Nov 25
0
GeForce 4xx/Fermi to Quadro Modifying Quide
Due to popular demand, I have finally found time to write this up. I had
to rush it a little, but hopefully you get the gist.
http://www.altechnative.net/2013/11/25/virtualized-gaming-nvidia-cards-part-3-how-to-modify-a-fermi-based-geforce-into-a-quadro-geforce-gts450gtx470gtx480-to-quadro-200050006000/
Any questions, please ask away, and I''ll update the article to expand on
those