[julia-users] Using SQLBulkOperations in ODBC.jl

2016-10-26 Thread Terry Seaward
Hi, How could one use the SQLBulkOperations function in ODBC.jl to insert a DataFrame into a table? Additional ref: https://msdn.microsoft.com/en-us/library/ms712471(v=vs.85).aspx - TS

[julia-users] Modifying large vectors of repeated data

2016-04-14 Thread Terry Seaward
Hi, I have a large vector of repeated data (dates in my case, but I'd like to keep this generic). In R I can apply a function to the elements efficiently using something like this: myfun <- function(x, fun, ...) { ux <- unique(x); fun(ux, ...)[match(x, ux)] } myfun(x, as.character)

[julia-users] SMTPClient

2016-02-06 Thread Terry Seaward
Hi, SMTPClient is marked as deprecated. Is there a better/alternative way of sending email? If not, what is the best way to find everything in the package that is deprecated? Cheers Terry

Re: [julia-users] load a Julia dataframe from Microsoft SQL Server table

2016-02-03 Thread Terry Seaward
>From R, it seems like the encoding is based on the connection (as opposed to being hard coded). See `enc <- attr(channel, "encoding")` below: ``` > RODBC::odbcQuery function (channel, query, rows_at_time = attr(channel, "rows_at_time")) { if (!odbcValidChannel(channel))

Re: [julia-users] load a Julia dataframe from Microsoft SQL Server table

2016-02-03 Thread Terry Seaward
PS, thanks for the patch.

Re: [julia-users] load a Julia dataframe from Microsoft SQL Server table

2016-02-02 Thread Terry Seaward
Is there a DBI compliant version of this? Also I have endless string conversion issues with this package. On Tuesday, 17 March 2015 21:22:50 UTC+2, Jacob Quinn wrote: > > Check out the https://github.com/quinnj/ODBC.jl package for connecting to > DSN defined in your ODBC manager. > > On Tue,

[julia-users] Re: What's your favourite editor?

2015-09-21 Thread Terry Seaward
Thanks for all the replies. Having previously tried Sublime, Atom and LightTable I've spent the year learning Vim and have now switched to Emacs (evil-mode). I'd be grateful to hear from other emacs users regarding your workflows for Julia development, e.g. if you want to write a Julia

[julia-users] Re: Package installation errors with

2015-08-27 Thread Terry Seaward
It seems to be an issue with the source.list urls defined in WinRPM?

[julia-users] Package installation errors with

2015-08-27 Thread Terry Seaward
Hi, Is anyone else having issues when installing packages with dependencies on Windows? The example below was for `Pkg.add(ZMQ)` but seems to be an issue with any package that uses `cache.e.is.saba.us`. I am unable to reach `cache.e.is.saba.us` (I'm not behind a firewall and am not using a

[julia-users] Re: Package installation errors with

2015-08-27 Thread Terry Seaward
Tracked it down to https://github.com/JuliaLang/WinRPM.jl/issues/47

[julia-users] What's your favourite editor?

2015-01-17 Thread Terry Seaward
Hi, Just curious to know what people use to write/edit their Julia code (os/app)?

Re: [julia-users] Is it possible to set Winston's PlotLabel font size

2014-02-03 Thread Terry Seaward
As easy as that. Thanks Mike. On Monday, 3 February 2014 21:13:03 UTC+2, Mike Nolta wrote: On Mon, Feb 3, 2014 at 2:10 PM, Terry Seaward terry@gmail.comjavascript: wrote: p = FramedPlot(xrange=(-1, 1), yrange=(-1, 1)) add(p, PlotLabel(.5, .5, ABC)) Sure, e.g., add size=10