Displaying 3 results from an estimated 3 matches for "magro".
Did you mean:
macro
2015 May 08
3
pregunta
Estimados
Al dirigir la lectura de un folder tYA1.csv me da este error y no me percato del motivo, adjunto archivo. Espero su ayuda
Saludos
Jos?
> setwd("D:/Public/Documents/R/bioimpedancia")
> a<-read.csv("tYA1.csv",header=TRUE, sep=",", dec=".")
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more
2011 Feb 08
5
xen3 domU on xen4 dom0
Greetings!
Trying to to run a xen3 domU on a xen4 dem0 I run into problems.
The xen server ''XEN1''(dom0) is openSUSE-11.3 (kernel 2.6.34) and xen-4.0.1.
With qemu I created an image ''M08.raw'' from the SUSE-9.3
(kernel 2.6.11) and XEN-3.0 installation CD''s.
The XEN modules were included in the installation.
In M08.raw/boot I configured grub/menu.lst:
2011 Feb 08
0
Sorting by inner has_many through attribute
Hello everyone,
For this model:
class User < ActiveRecord::Base
has_many :component_users, :dependent => :destroy
has_many :components, :through => :component_users, :conditions =>
[''components.active = ?'',true]
accepts_nested_attributes_for :component_users, :reject_if => lambda
{ |a| a[:components].blank? || a[:components]
[:name].blank? },