similar to: respecting original matrix dimensions

Displaying 20 results from an estimated 4000 matches similar to: "respecting original matrix dimensions"

2010 Oct 28
1
adding environment variables
Hi All, I am developing a package that requires information about the location of a set of files that will be used often in the calculations. In my current version, I define the location in the main file that calls all the subfunctions. This works fine when you are installing from source, but will not work so well if I want people to be able to install binary versions of the package. Therefore, I
2010 Mar 18
2
list names
So I have a list variable, and each item has a name. Is it possible to return just the names in the list and not the contents of each one? Example: Currently, if I have a list variable "matrices", and it contains 3 matrices, "M1", "M2", and "M3", if I type: matrices, R returns $M1 -> listing of numbers in matrix; $M2 -> listing of numbers in matrix,
2011 Feb 15
3
expected behavior when parsing lines with special characters
Say I have a tab-delimited table I want to read into R. What should I expect to happen if some of the entries contain the character " ' "? I thought it would read the file fine, but that is not what happens. Instead, all the values in between two " ' "s get read into one field, and things are just seriously messed up. Is this a bug, and besides removing the offending
2012 Feb 01
2
location of check.Renviron on Windows
Doing package development on a Windows 7 machine, and I want to tell R check not to worry about the "suggested" packages. I realize this can be done using the ~/.R/check.Renviron file, but what directory corresponds to "~"? Is that supposed to be the user directory? Or is it some other directory? I have this _R_CHECK_FORCE_SUGGESTS_=false (have also tried FALSE) in
2012 May 04
1
add sessionInfo() option to "save"
Hi All, I was wondering if there would be any interest in adding an option to the "save" function in R that I think would be useful. I was thinking that it might be useful to have an option that would generate a ".sessionInfo" variable that contains the output of "sessionInfo()", and adds it to the list of objects to be saved. This way, whenever an RData object is
2011 Mar 07
0
visualizing data flow and function calls
Hi All, I don't know if such a thing exists, but I am looking for a way to better keep track of where data is going, how it is being modified, and what functions are acting upon it when I give the data over to a function that calls many subfunctions (as happens in my current package I am working on), or in an R script I am using to do multiple processing steps on data. Currently I find it
2010 Mar 11
1
console window always on top
In R on Windows (ver 7) I have somehow set the preferences for the R console window to be always on top. I'm sure at the time I did this it seemed like a good idea, but in practice it is not. Unfortunately, I cannot remember where the setting is changed, and thus it is stuck this way. Does anyone know how to modify this setting? Thanks, -Robert Robert M. Flight, Ph.D. Bioinformatics and
2011 Jan 30
2
problem reading file containing bit vector
Hi I have a tab delimited file with fillowing content: "swissProtID" "entrezID" "bitVec" "Q62924" "---" "00000000100010000000000000000000" "P18897" "---" "00000000000001000100000000000000" "Q62736" "---"
2005 Jul 24
2
Busy Lamp Field SIP Phone
Does anyone have a recommendation for a good SIP phone with a busy lamp field? I need my operator to be able to see extension status for about 20 extensions and transfer via HOLD + extension button. I've got a pair of SNOM 360s with the sidecar, but I'm very disappointed with them. The buttons are cheap and rubbery like a Sipura 841, the handset cord is short and cheap, the audio quality
2010 Jun 16
1
Is there any function to read genbank flat files.
Hi I am trying to read genbank est flat files. Is there any function in R to do that. I was looking for something similar to SeqIO.parse(input_handle, "genbank") in bioPython that convert the genebank sequence into fasta sequence. (One option is to call biopython from R but I am not familiar with python functions so I want to avoid that and I am keeping it as last resort) Thanks and
2011 Jan 30
2
bit wise operation on long bit vector?
Hi Is there any function to do bitwise or/and/xor on long bit vectors? "aaaaa" "0000000000000000000000000000000000000000000000000000000000000000......................" "bbbbb" "0000000000000000000000000000001000000000000100000000100000001100......................" "ccccc"
2007 Mar 24
1
spec''ing metaprograming & rails CRUD
For edge rails there is a Crud generator. There is also a CRUD controller that is out there from which you can inherit your other controllers (see http://geekonomics.blogspot.com/2006/07/crud-and- shared-controllers.html) This got me thinking about Crud controllers in general. As far as I know, the generator can''t produce crud classes which are nested (i.e.
2005 Aug 16
2
Polycom 501 dialing problem
When I want to pick up a ringing line, I dial *8 and hit New Call softkey on my Poly 501. For some reason, if I pick up the hand set and dial *8, it seems to ignore or drop the 8 digit. I've confirmed that this happens with all of my 12 Polycom 501s. Does anyone know what would cause this or how to fix it? Craig Bruenderman Network Advocates, Inc. 300 Envoy Circle Suite 300 Louisville, KY
2005 Dec 15
2
A Rails-based CMS?
Is there a working Rails-based CMS out there and available? I''ve looked on the web a bit this morning but have not found anything that can be put in use. Thanks! Nathan Mealey Operations Director Northeast Region Pilgrim IT, LLC NORTHEAST OFFICE 1 Short Street Northampton, MA 01060 TEL 866.434.4976 FAX 413.587.0572 MIDWEST OFFICE 1815 Brownsboro Road Louisville,
2007 Mar 19
3
controller_name with dynamic controllers
I''m writing a controller which should only be inherited from, something like the generic crud controller seen here: http:// geekonomics.blogspot.com/2006/07/crud-and-shared-controllers.html Now, in my spec, I would like to create a controller which inherits from the generic CRUDController, without actually creating the controller. This controller is *only* for testing. How can I
2006 Mar 03
2
newbie scaffold question
I''ve got a database with several tables. I''d like to create scaffolding for separate CRUD interfaces for several of these tables. I''m hoping that the scaffold generator can create the CRUD code for all these tables in ONE controller, but I don''t know how to tell it to do that, if it can. Can anyone verify if this is possible? Thanks, David -- Posted via
2006 Jul 28
8
Building a Search Page as part of CRUD
I''ve been experimenting with Rails over the past couple of days and have come across something that seems harder than it should be. In previous frameworks I have used (WebObjects, php) a full search page (which leads into a list view populated with search results) was part of the CRUD that was either dynamically or statically created after specifying table/object schema. In
2006 Aug 02
1
Use Non CRUD with Simply RESTful
Hey guys, I''m trying out the new RESTful bits in Edge Rails, and am having a bit of trouble wrapping my brain around certain things. For instance, say I have a page that is separated into sections with tabs at the top. I want to replace divs on the page with RJS. Now typically before I''d have a method on the controller that rendered an RJS template to accomplish this.
2006 Jul 31
3
Simply_RESTful and Bulk Import URLs
Hi, I have a people controller, and want to import bulk import multiple people from a CSV file. In my routes.rb file I have: map.resource :person Now, it''s a little unclear to me how to further configure the routes to allow me to add the following URLs: I need a URL to choose a file to upload, so I need an HTML ''frontend'' for it, so I figured the following URL
2008 May 09
1
Test Unit can't change data
I have converted my engine from myISAM to InnoDB, the matter now in Test Unit, the table cant do any changes for CRUD. Any advice? But if I convert it back, the CRUD can run very smooth and data value in attributes changed. Reinhart http://teapoci.blogspot.com -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you