Displaying 20 results from an estimated 30000 matches similar to: "Exist the S 'dates' function in R?"
2006 Jul 25
1
newbie--how do i load a parsed file?
Hello there,
I''m new with ruby on rails and i don''t know how to load up a parsed file
into my database. I have my ruby script that parses it but don''t know
where to put my code, or how to combine it with view/model/controller.
this is what i have:
class Description < ActiveRecord::Base
def import_strings(a_file)
table = { }
2006 Jul 24
2
Newbie error message!
hello you all,
I''m new with Ruby on Rails. I''m developing an application. I got the
follwoign erro, can anybody give a hand?
ArgumentError in AdminController#import_strings
wrong number of arguments (0 for 1)
RAILS_ROOT: ./script/../config/..
Request
Parameters: {"commit"=>"Import",
2006 Aug 02
4
is it possible to duplicate a key? --new
Im not very familiar with RoR so this question might be kind of silly.
I want to store strings from different lenguages in a database. I want
to have the key for the string in english be the ''key'' for all the
corresponding traslations of that string. For example:
(database columns)
lenguage-------------key-----------------value-----
english hello
2015 Apr 28
2
Maximizar Consola de R al inicio
Hola Miguel Angel:
Primero que nada gracias por tu aporte.
Los parámetros del MDI que tengo en el fichero Rconsole son:
MDI = yes
MDIsize = 0*0+0+0
En lo de llamar a R usando start /MAX Rgui.exe, lo cierto es que no se muy bien a que te refieres.
EL campo Destino del Acceso directo que uso para abrir Excel es: "C:\Program Files\R\R-3.2.0\bin\x64\Rgui.exe" --internet2 y la
2010 Aug 13
2
samba-3.5.4 + OpenLDAP
Hi folks,
I having a problem compiling Samba (Last Stable Version) from source on
a Debian fresh install.
Escenario:
OS: Debian Lenny 5 64 bits
Kernel: 2.6.26-2-amd64
Samba Version: 3.5.4
OpenLDAP Version: slapd_2.4.11-1
I tried this before and after the OpenLDAP installation and always have
the same error:
./configure --with-ldap --with-ldapsam
.
.
.
.
.
checking for LDAP support...
2016 Apr 12
2
Procesos paralelos
Estimado Gilsanz
Algo que puede ser, ¿tiene instalado tcltk en Windows?
Yo ante un problema parecido lo solucioné realizando un contador, en mi caso conozco la cantidad de consultas, entonces simplemente ?imprimo? en pantalla 1 de 100, 2 de 100, etc. No es gráfico, pero R me informa dos cosas, que está trabajando y cuánto falta, feo a la vista pero muy simple.
Javier Rubén Marcuzzi
De:
2004 Jun 21
2
sunrise, sunset calculation
Are there any functions available to calculate sunrise and sunset times
for given latitude,longitude and dates?
If not, I'll appreciatte any pointers to C code I could use/port.
Thanks,
Angel
2006 Jul 28
0
newbie----what''s wrong with my code
I know i''m new with ruby and i''ve been kind of confused with how rails
manages all the details. I want to store the key-values in different
columns on my database so that when I enter a eky, it gies me the
corresponding value. this is what i have:
my view:
<h1>Importing Strings<h1>
<%=error_messages_for("string_record")%>
<%=
2015 Apr 28
2
Maximizar Consola de R al inicio
Hola:
Intento configurar R para que cuando se cargue (en una maquina con Windows 7) la consola de R aparezca maximizada dentro de la propia ventana de R.
Tengo una serie de procesos diseñados para que se ejecuten al iniciar R y que sin la consola maximizada no permite ver el progreso de esos procesos.
La ventana general de R si que aparece maximizada (usando el parámetro MDIsize = 0*0+0+0 del
2014 Dec 01
4
06da:0002 Phoenixtec Power Co., Ltd UPS
Hi! all.
I have been reading every mail and news about nut and 06da:0002
Phoenixtec but not found a solution.
I have a very nice working ups from:
CENER ref: "Active 1000VA 230V 12 CENER" and front logo "LA 900"
It has COM3 and USB plugs, I don't know if it needs a standar RS232
I have test with varius drivers in ups.conf
[MyUPS]
driver = bcmxcp_usb | usbhid-ups |
2016 Apr 12
2
Procesos paralelos
Hola, ¿qué tal?
Si la base de datos de destino es SQL Server, ¿por qué no pruebas con
la función dbBulkCopy del paquete
https://github.com/agstudy/rsqlserver? Debería poder cargar millones
de registros en segundos. Al menos, en una única transacción en lugar
de múltiples como con sqlSave.
Un saludo,
Carlos J. Gil Bellosta
http://www.datanalytics.com
El día 12 de abril de 2016, 11:55,
2014 Dec 04
4
06da:0002 Phoenixtec Power Co., Ltd UPS
Hi Charles.
I have got this output with driver usbhid-ups
ups.conf
[Phoenixtec]
driver = usbhid-ups
vendorid = 06da
productid = 0002
port = auto
#~ langid_fix=0x0409
desc = "CENER ONLINE 1000VA"
# export USB_DEBUG=5
# ./usbhid-ups -a Phoenixtec
Network UPS Tools - Generic HID driver 0.37 (2.6.4)
USB communication driver 0.32
0.000000 debug level is '3'
0.000557
2012 Apr 27
4
salida informe html
Buenos días,
Como resultado final de unos análisis espaciales que hago, genero unos
mapas y gráficos.
He creado una ficha como esta a mano:
http://dl.dropbox.com/u/7026890/CM/RSesmaf.html
en la que presento un mapa resultado con los puntos de muestreo y una serie
de gráficos de evolución.
¿Sería posible generar algo similar con R?
Por ahora lo que he encontrado sería escribir el html línea a
2006 Jul 21
1
Newbie Question about Ruby on rails---cant upload data
Hi everybody,
Ruby on Rails is my first programming lenguage...it looks to me like i''m
missing the big picture. I''m trying to upload a file into a database.
In my app. my user needs to select a file and upload it...however I only
want him to upload certain information from that file. I have written
code to parse only string tables from that file. For example, the table
2006 Jul 27
7
Newbie question---
I wrote a ruby script that parses a file into key-values like so:
class Parser
table = { }
IO.foreach(''Localizable.strings'') { |line|
if line =~ /^ \s* " (.*?) " \s* = \s* " (.*?) "/x
table[ $1 ] = $2
end
}
end
I want to store the key-values in different colums on my database so
that when I enter a key, it gives me the corresponding value...how
2002 Oct 24
1
signal 11 on fsck
System info:
------------
[root@angel root]# cat /etc/issue
Red Hat Linux release 7.2 (Enigma)
Kernel \r on an \m
[root@angel root]# uname -a
Linux angel 2.4.9-34 #1 Sat Jun 1 06:25:16 EDT 2002 i686 unknown
This problem occured after upgrade to kernel 2.4.18-17.7, backed out to
previous version now (2.4.9-34). All other system RPMs are up to date
according to RHN, and nothing, aside from
2011 Nov 21
2
ordenar de mayor a menor
Hola, tengo una tonteria que no me sale. Esta tablita esta ordenada de menor a mayor.
Como hago para invertir el orden (de mayor a menor) ?
Gracias
puerto visitas medias
3 Aldán-Hio 4.00
59 Tarifa 11.95
13 Camariñas 99.00
23 Cudillero 170.40
38 Mundaca 198.27
57 Suances 211.70
[[alternative HTML
2012 May 21
16
Contactos en Madrid-ayuda con instalación
Hola a todos,
Mi nombre es Juanjo. Llevo un tiempo intentado hacer funcionar un programa
que necesita de la instalación de RPROJECT y REXCEL. He mirado varias guías
e instalado los programas pero obtengo varios errores.
El principal es que tras instalar RProject, Rexcel y statcon y al intentar
correr esta macro desde Visual Basic…
Sub Start()
RInterface.StartRServer
2003 May 08
1
nls, restrict parameter values
Hi,
I posted a question (bellow) a few weeks ago and had a reply (thanks
Christian) that partly solves the problem, but I still would like to be able
to restrict some of the independent variables in a nls model to be always
>0, (is there a way to do it)??
Thanks,
Angel
>From: "Christian Ritz" <ritz at dina.kvl.dk>
>To: "Angel -" <angel_lul at
2011 Feb 15
24
editores en windows
Hola a todos.
En linux uso rkward o gedit con el plugin Rgedit, pero me gustaría saber
qué editores se pueden usar en windows. He probado Tinn-R , ¿qué usáis
vosotros?
Gracias