Displaying 20 results from an estimated 9000 matches similar to: "Scio Excel library"
2006 Aug 03
2
thread problems
I have a really long series of queries (import from other database*)
that takes about 2 or 3 minutes. I wanted to spawn a thread and put the
job there, but there seems to be some problems with active record and
threads: (this is what I found after googling)
Thread.abort_on_exception = true
=> true
100.times do
Thread.new do
Client.find(:first)
end
end
this throws an exception... So
2006 Aug 07
9
problems with ActionMailer
Hi all,
I''m trying to create a worker to send a mail to all the users in my
db. Right now I''m doing the tests, this is the code in my worker
(Masivo is the ActionMailer subclass):
def do_work(args)
@progress = 0
@logger.info("MAILER: starting job")
records = Record.find(:all)
total = records.size
records.each_with_index do |record, idx|
2006 Aug 17
2
php application inside rails public directory?
Hi all,
I need to install cerberus inside my rails app''s public directory... I
agree that the best method would be to put the whole php app in it''s own
subdomain, but for now (i''m just testing) that''s not possible...
What would be the way to do that?
thanks!
rolando.-
--
Posted via http://www.ruby-forum.com/.
2006 Feb 01
4
exclude a column in save!
Hi all,
I have a column that peeks its value from a sequence (postgres) some
times. Other times, I set it to a certain value.
This column has a default value of "nextval(''the_sequence'')"... When I
want that this column peeks the value from the sequence, I do this:
obj = Mymodel.new
obj.some_column1 = blah
obj.some_column2 = blah
obj.some_column3 = blah
obj.save!
but
2014 Mar 17
3
Resumen de R-help-es, Vol 61, Envío 25
Hola Rolando,
Yo utilizo un MBP (con 4 GB) y no me tarda ese tiempo que comentas en hacer mapas y mucho menos gráficos complejos.
¿Usas R Studio?
Un saludo
> Asuntos del día:
>
> 1. R lento para graficar mapas en MacBook (Rolando Valdez)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sun, 16 Mar 2014
2014 Jun 13
2
Crear matriz binaria
Hola, no encuentro el momento en el que se relacionan los inventores, es decir, lo que relaciona a dos o más inventores es la patente.
Primero, ¿cómo debo ordenar los datos?
Tengo 1813 número de patentes, es decir, la matriz es de dimension 1813 x 1813.
Tengo varios órdenes en los datos, por ejemplo, el primer arreglo es por patente, en las columnas tengo ?no. de patente?, ?inventor 1?,
2006 Jul 11
9
problems with observe_field
Hi all, I''m having problems with an observe_field, this is the view:
<%= form_tag %>
<div id="content">
<p>Customer:
<select name="cliente_id" id="cliente_id">
<option value="">Select a customer</option>
<%= options_for_select Cliente.find_all.collect {|c| [c.razon_social,
c.id]} %>
2014 Mar 17
3
Resumen de R-help-es, Vol 61, Envío 25
Estimado Javier Marcuzzi,
Francamente desconozco mucho de lo que me explica, no soy ingeniero, soy economista y tengo poca experiencia en R y sobretodo utilizando Mac. Tengo apenas 2 semanas con esta computadora.
Agradezco mucho su tiempo, seguiré investigando.
Saludos.
El 17/03/2014, a las 08:04, Javier Marcuzzi <javier.ruben.marcuzzi en gmail.com> escribió:
> Estimado Rolando
2014 Mar 18
3
Resumen de R-help-es, Vol 61, Envío 25
Hola,
Parece que es un tema conocido.
Mira si lo que se dice aquí te aplica, pero vaya parece que todo pasa
porque te actualices el R-Gui y RStudio a la última versión para Mac
(entiendo que tienes Mavericks)..
http://citizen-statistician.org/2013/10/27/warning-mac-os-10-9-mavericks-and-r-dont-play-nicely/
Saludos,
Carlos Ortega
www.qualityexcellence.es
El 18 de marzo de 2014, 19:38, Javier
2011 Jun 14
3
Read in from multiple Excel wksheets
I?ve got an Excel workbook with about 30 worksheets. Each worksheet
has 10000 rows of data over 30 columns.
I?d like to read the data from each worksheet into a dataframe or
matrix in R for processing. Normally, I use read.csv when interacting
with Excel but I?d rather manipulate a multisheet workbook directly
than set about splitting the original workbook and saving down each
part as a csv.
2014 Jun 13
2
Crear matriz binaria
Hola,
Estoy tratando de crear una matriz cuadrada, binaria y no tengo idea por dónde comenzar.
Los datos que tengo son patentes e inventores por patente, las patentes las identifico por su código y a los inventores por nombre y también los tengo codificados.
Deseo hacer una matriz de nxn en donde los renglones son inventores de la A a la Z y columnas son los mismos inventores de la A a la Z,
2014 Mar 17
3
problema con intalacion de zoo (debido a version) y sentiment140
Hola!
Necesitaria saber como/donde consigo zoo para version anterior a 3.0.3 ya que el que se instala por defecto es ese y no lo puedo cargar lugo ya que mi version de R es anterior a la 3.0.3
Por otro lado estoy tratando de instalar sentiment140 desde el zip como indica en la pagina y no lo puedo lograr, no me funciona ni pasa nada, en el log no aparece ningún mensaje.
Cualquier ayuda me será
2013 Mar 05
0
Meaning of error message when exporting to MS Excel
Hi,
I?m attempting to export data (split into multiple files from one large
dataset) from R to excel using the excel.link package. The code for export
is as follows:
for(i in practicesNN){
#Create relevant data for input
#Separate out all parts of data ? PracticeName is removed from example
data for privacy reasons
detailedH<-dataExport2[dataExport1$PracticeName == i &
2009 Jul 08
1
RDCOMClient: how to close Excel process?
Hi,
I?m using R package RDCOMClient (http://www.omegahat.org/RDCOMClient/)
to retrieve data from MS Excel workbook. I?m using the code below to
count the number of sheets in the workbook and then loop the data from
sheets in to a list.
############# R code ###################
library(gdata)
library(RDCOMClient)
xl <- COMCreate("Excel.Application")
sh <-
2010 Jan 03
2
Problem with downloading a generated Excel sheet
Hello,
I''m using the spreadsheet/excel gem to generate an excel sheet that I
want user to be able to download it once it''s generated. Please take a
look on the below code:
@contacts=Contact.find(:all)
if @contacts.size>0
file="#{Date.today}_Report.xls"
workbook=Spreadsheet::Excel.new("#{RAILS_ROOT}/public/reports/#{file}")
2009 Apr 07
0
File created using Spreadsheet Excel can't read on linux
Hi All,
Created xls file using spreadsheet Excel is not read on linux.
I am creating an xls file are as follows
workbook = Spreadsheet::Excel.new("Filepath")
worksheet = workbook.add_worksheet("Sheet1")
|
|
|
workbook.close
but when i am trying to download this it not get download.
--
Posted via http://www.ruby-forum.com/.
2014 May 05
3
Mapa de quantiles con spplot
Hola, no me funciona:
Te contesto lo mismo que le contesté a otro compañero de la lista, espero ser más claro.
Les comparto la carpeta con la capa y los datos que estoy usando.
https://www.dropbox.com/s/umy0evt3qm1wr4d/dissolve.zip
Esto es lo que estoy haciendo:
library(rgdal)
library(maptools)
library(sp)
library(classInt)
library(RColorBrewer)
zm <- readOGR(?.?, ?zmdis?)
data <-
2014 Mar 12
3
Sobreponer dos mapas
Hola,
Estoy tratando de sobreponer un mapa sobre otro, uno que sirva de ?background? y otro con datos. Mi primer intento lo hice usando el paquete PBSmapping.
Aquí lo que hice:
library(PBSmapping)
estados <- importShapefile(?Entidades_2013.shp") #Aquí cargamos las entidades federativas (32 entidades)
zonas <- importShapefile(?zm.shp?) #Aquí cargamos las zonas metropolitanas del país
2006 Jun 16
4
problem with join
Hi all,
I''m having a problem with a join inside a paginate, the code is like this:
@ruta_pages, @rutas = paginate :rutas,
:conditions => conds_arr,
:joins => "AS ru LEFT JOIN vehiculos AS ve ON ru.vehiculo_id = ve.id",
:per_page => 10,
:order => "fecha DESC"
The problem with this, is that the query returns the
2015 Sep 17
2
Fwd: Creación fichero excel con loadWorkbook
>
>
> Hola chic en s,
>
> sigo intentando crear un archivo de Excel pero no hay manera. Sigo los pasos del documento de ayuda siguiente:
>
> http://altons.github.io/r/2015/02/13/quick-intro-to-xlconnect/#load
>
> los pasos que hago son:
>
> install.packages("XLConnect")
> require(XLConnect)
> wb <-