search for: avram

Displaying 20 results from an estimated 25 matches for "avram".

Did you mean: vram
2008 Sep 11
2
database table merging tips with R
...are not available and it seems to require some effort to compile (see http://cran.r-project.org/web/packages/ROracle/index.html). On the other hand, RODBC worked more or less magically once I set up the data sources. What is your success using ROracle and why would it be preferable to RODBC ? -Avram On Thursday, September 11, 2008, at 12:47PM, "Coey Minear" <cminear at securecomputing.com> wrote: >Aaron Mackey writes: > > I guess I'd do it something like this: > > > > dbGetQuery(con, "CREATE TEMPORARY TABLE foo ( etc etc)") > > sappl...
2018 Oct 03
2
Bug reports - auth is broken in Dovecot 2.3.3
On 3 Oct 2018, at 14.09, Berindeie Avram-Teodor <berindeie.teo at gmail.com> wrote: > > > > I do not have downloaded the source from GitHub. The patch modifies configure.ac, so unless you run autogen.sh the configure script isn't modified and that patch doesn't work. Or as an alternative you could simply manu...
2018 Oct 04
2
Bug reports - auth is broken in Dovecot 2.3.3
On Wed, Oct 03, 2018 at 03:47:11PM +0300, Berindeie Avram-Teodor <berindeie.teo at gmail.com> wrote: > On Wed, Oct 3, 2018 at 2:44 PM Timo Sirainen <tss at iki.fi> wrote: > > On 3 Oct 2018, at 14.09, Berindeie Avram-Teodor <berindeie.teo at gmail.com> > > wrote: > >> On Wed, Oct 3, 2018 at 1:53 PM Timo Sirainen &l...
2005 Oct 20
4
creating a derived variable in a data frame
...;MX'), ] -> "North America" I have read about factors, but I am not sure how they apply here. Can anyone help me with the syntax? I am sure it is trivial and a common thing to do. The ultimate goal is to compute percentages of x by continent. Thanks for any help in advance. -Avram
2018 Oct 03
5
Bug reports - auth is broken in Dovecot 2.3.3
I applied the patch and recompiled but nothing resolved. What else can I do? -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://dovecot.org/pipermail/dovecot/attachments/20181003/17af6a17/attachment.html>
2009 Apr 29
2
help converting for loop to vector operation
...dev.off() } basepath <- "C:/tmp" for ( i in c(2:6) ) { print(names(economics)[i]) draw_metric_by_date( economics, i, smooth=TRUE, basepath ) } Could someone show me how to do the same with a vector approach with an "apply" function ? Many thanks, Avram
2018 Oct 04
0
Bug reports - auth is broken in Dovecot 2.3.3
> On 04 October 2018 at 11:05 Florian Pritz <bluewind at xinu.at> wrote: > > > On Wed, Oct 03, 2018 at 03:47:11PM +0300, Berindeie Avram-Teodor <berindeie.teo at gmail.com> wrote: > > On Wed, Oct 3, 2018 at 2:44 PM Timo Sirainen <tss at iki.fi> wrote: > > > On 3 Oct 2018, at 14.09, Berindeie Avram-Teodor <berindeie.teo at gmail.com> > > > wrote: > > >> On Wed, Oct 3, 2018 at 1:53...
2009 Feb 26
1
bottom legends in ggplot2 ?
...t the legend is placed on the bottom, under the abcissa rather than to the right hand side ? The following doesn't move the legend: library(ggplot2) qplot(mpg, wt, data=mtcars, colour=cyl, gpar(legend.position="bottom") ) I am using ggplot2_0.8.2. Thanks in advance, Avram
2008 Aug 21
2
Large data sets with R (binding to hadoop available?)
...nguage called ?PIG-latin? or simply ?PIG? for using the Hadoop framework in a manner reminiscent of the look and feel of R. Is there an opportunity here to create a conceptual bridge since these projects are also open-source? Does it already exist? Thanks in advance for your comments. -Avram --------------------------- Information about Hadoop: http://wiki.apache.org/hadoop/ http://en.wikipedia.org/wiki/Hadoop ?Apache Hadoop is a free Java software framework that supports data intensive distributed applications running on large clusters of commodity computers.[1] It enables ap...
2018 Oct 03
0
Bug reports - auth is broken in Dovecot 2.3.3
Thank you. Now it is working! On Wed, Oct 3, 2018 at 2:44 PM Timo Sirainen <tss at iki.fi> wrote: > On 3 Oct 2018, at 14.09, Berindeie Avram-Teodor <berindeie.teo at gmail.com> > wrote: > > > > >> I do not have downloaded the source from GitHub. >> > > The patch modifies configure.ac, so unless you run autogen.sh the > configure script isn't modified and that patch doesn't work. Or as an...
2008 Dec 03
3
Help with maps
...=FALSE)[c("x","y")])), geom="path")) + coord_map() Error in get(dbname) : variable "ukMapEnv" was not found In addition: Warning message: In data(list = dbname) : data set 'ukMapEnv' not found ( version 2.8.0, on win xp currently) Thanks in advance, Avram
2009 Jul 31
1
Using R with Hadoop/Hive for Big Data
Hive <http://hadoop.apache.org/hive/> is a data warehouse infrastructure built on top of Hadoop that provides tools to enable easy data summarization, adhoc querying and analysis of large datasets data stored in Hadoop files. It provides a mechanism to put structure on this data and it also provides a simple query language called QL which is based on SQL and which enables users familiar with
2018 Oct 03
0
Bug reports - auth is broken in Dovecot 2.3.3
On 03.10.2018 13:22, Berindeie Avram-Teodor wrote: > I applied the patch and recompiled but nothing resolved. > What else can I do? Did you reinstall as well? Also, can you provide backtrace again after the patch was now applied? Aki
2018 Oct 03
0
Bug reports - auth is broken in Dovecot 2.3.3
> > I do not have downloaded the source from GitHub. > > On Wed, Oct 3, 2018 at 1:53 PM Timo Sirainen <tss at iki.fi> wrote: > >> On 3 Oct 2018, at 13.22, Berindeie Avram-Teodor <berindeie.teo at gmail.com> >> wrote: >> > >> > I applied the patch and recompiled but nothing resolved. >> > What else can I do? >> >> You also need to run autogen.sh & configure again. >> >> -------------- next part ------...
2008 Mar 26
0
deconflicting namespaces
...magical way that I can wrap the Color gem in another namespace when I require it, so that instead of just Color::* it becomes External::Color::*? Going through all my code and changing the name of my Color class is turning out to be not only painful, but probably highly error prone. Thanks, AVram --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send...
2008 Jun 12
0
attachment_fu & multiple directories
...;'m wondering if Rick Olson (the developer) monitors this list, or if anyone can put me in touch with him? I''m hoping to get his advice on the best way to add this functionality, and find out whether or not he''s interested in having it contributed back to the project. Thanks, Avram --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send e...
2009 Jan 05
0
integration test not calling destroy
...course scaffolding can''t predict what other destructive methods you might write; technically, you ought to add any destructive method to this list, and then only call it via a post. I can''t wait to find out how many places I''ve failed to do that... HTH someone... -Avram "In the beginning, there was nothing. And God said: ''Let there be light!'' And then there was still nothing, but you could see it." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "R...
2007 Nov 29
2
rails color picker?
...ifically a I''m hoping for a full 24-bit picker with sliders, etc, that can interact with rails objects, such as updating a form that rails has setup, or just injecting it''s chosen value into an input value that rails has set up to put back into an object after submission. Thanks, Avram --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send e...
2007 Oct 15
0
converting from HABTM to has_many :through
...'m happy to give that up. b) there is a bug in this that I haven''t found yet, but is irrelevant to this question: this code creates a new inclusion even when there is an existing one found already. It seems params[...].delete is not working the way I expect it to. Thanks for any help, Avram -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gman...
2018 Oct 03
1
Bug reports - auth is broken in Dovecot 2.3.3
Hello, I have compiled Dovecot 2.3.3 from sources but I have problems with authentication. I tried to rebuild Dovecot 2.3.2.1 but the error persists. I attach a .txt file with the information requested to report a bug. My main mail server is fallen, (the same for the test server) I will send the report from a Gmail address. If you need additional information I will be at your disposal.