Displaying 20 results from an estimated 10000 matches similar to: "Organisation of medium/large projects with multiple analyses"
2006 Oct 30
1
[Fwd: Re: Organisation of medium/large projects with multiple analyses]
Daniel Elliott wrote:
> Mark,
>
> It sounds like your data/experiment storage and organization needs are
> more complicated than mine, but I'll share my methodology...
Many thanks for this, and for the other replies received off-list. It is
much appreciated, and confirms that with something as generically
applicable as R, with as many widespread and heterogeneous uses, there
is
2006 Oct 17
2
RODBC and NULL values
Dear All,
Writing sooner than I thought I'd need to.
I'm using R 2.4 on Mac OS X, with RODBC, PostgreSQL 8.1 and Actual's
ODBC driver. I have all my data in Filemaker 8.5, but it is
automatically exported into PostgreSQL for analysis as Filemaker's ODBC
and JDBC access is awful, slow and has a tendency to crash.
I have disability data where for each patient there is a survival
2006 Nov 08
2
Sweave and font problems
Dear All,
Having now successfully started using Sweave, I have just noticed an odd
side effect with fonts.
Using plain LaTeX, I have had no problems using \usepackage{palatino} or
\usepackage{times} and the font correctly changes.
However, once I convert the tex document into Snw, and run it through R
CMD SWEAVE, LaTeX seems to ignore this package directive. The LaTeX log
suggests the font
2013 Apr 04
0
Strategic Research Bioinformatician required, Cardiff, UK.
Dear All,
We (The Cardiff Institute of Infection and Immunity) are very keen to
appoint a bioinformatician with a range of opportunities from 'simple' array
analysis to aiding in the programming and analysis of novel data platforms.
This is an Institutional, not just a project specific, appointment centred
on the high quality Internationally-recognised Immunology research done in
2006 Oct 14
2
Sweave, R and complex latex projects
Hello all,
I've been able to use R very successfully to run simple statistics and
generate the plots I require.
I've been evaluating Sweave, and have hit upon a small problem that I
don't seem to be able to workaround. Sweave runs very well for single
file latex documents, but I have a complex thesis made up of several
parts and chapters. These are arranged with a master latex file
2006 Nov 30
4
R_WinEdt question
if I want to put fig1plot to the left, figYPplot to the right
figYAaplot on the bottom.
How to modify the following cod to do these?
\begin{figure}[H]
\centering
\begin{minipage}[t]{0.5\textwidth}
\centering
<<label=fig1plot,fig=TRUE,echo=FALSE>>=
<<fig1plot>>
@
%\caption{Caption 1}
\end{minipage}
\begin{minipage}[t]{0.5\textwidth}
\centering
2006 Nov 08
5
query in R
how to realize the following SQL command in R?
select distinct A, B, count(C)
from TABLE
group by A, B
;
quit;
Best Regards
---------------------------------
Sponsored Link
Get a free Motorola Razr! Today Only! Choose Cingular, Sprint, Verizon, Alltel, or T-Mobile.
[[alternative HTML version deleted]]
2006 Jan 24
4
Can R handle medium and large size data sets?
Dear R experts,
Is it true that R generally cannot handle medium sized data sets(a
couple of hundreds of thousands observations) and threrefore large
date set(couple of millions of observations)?
I googled and I found lots of questions regarding this issue, but
curiously there were no straightforward answers what can be done to
make R capable of handling data.
Is there sth inherent in the
2007 Oct 11
3
reason for error in small function?
Running the function below, tested using the cardiff dataset from
splancs generates the following error. What changes do I need to
make to get the function to work? Thanks. --Dale
> gen.rpoints(events, poly, 99)
> rpoints
Error: object "rpoints" not found
# test spatial data
library(splancs)
data(cardiff)
attach(cardiff)
str(cardiff)
events <- as.points(x,y)
###
2001 May 08
1
New kex organisation and user options.
I'm in the process of updating my GSSAPI patches to the 2.9 release. However,
I've run into a slight problem with managing to get user options to play
nicely with the way that the kex code is now organised.
With the GSS kex its possible for the user to specify whether they want to
delegate their credentials to the server or not. This option is used only on
the client side (and so is
2004 Jan 27
3
Directory-like data organisation w/ environments?
Dear r-users!
I wonder if there is a way of designing a directory like structure for
holding my data using environments?
It would be nice if I could implement a kind of 'cd' command to change
to a differend environment etc.
Can anybody give me a hint?
-cl
--
Christoph Lange
MPI fuer biologische Kybernetik |Phone: +49-7071-601-607|
Postfach 2169, D-72012 Tuebingen |FAX:
2006 Mar 08
3
Namespace & Organisation Conventions
Hi All
I wanted a little advice on the convention for namespace usage and
organisation of code.
I originally used PHP and often had an "admin" backend that performed the
various admin tasks with users, and data
Then I had a front-end often situated at the root that had user services.
I''m trying to emulate this in Rails but feel I''m missing a significant point
here and
2013 Nov 26
1
How to keep idmapping, when Samba servers becomes part of a Windows AD from a larger organisation.
Hi
Since 2006, I used in my departement a Samba solutions based on NT4 style PDC, 2 BDCs and some files servers, desserving one hunderd persons. The backends for passwords and idd are a master and two slave openldap. Now i have to integrate a much larger organisation, an University Hospital, running with Windows AD. For political reasons, I should not maintain DCs anymore, but I will still
2014 Nov 09
2
organisation of packages & CRAN
Hi,
I?ve been using R on and off for a couple of years. I think R is pretty great but one thing I?d like to see improved is the way packages are organised. Instead of CRAN being a long list of packages having a short & usually unintelligible name I ?d like to see packages organised in a hierarchical way with that path acting as a hierarchical namespace just like you have in many other
2010 Aug 23
2
Asterisk, HylaFax and Cardiff
I'm looking for a way to use our implementation of HylaFax on Asterisk with
Cardiff (an old installation of Cardiff document stuff).
Is someone doing that?
If no one has direct experience, is there a HylaFax client that emulates
WinFax print-to-fax?
--Don
Don Kelly
PCF Corp
People Come First
651 842-1000
888 Don Kell(y)
651 842-1001 fax
-------------- next part --------------
An
2006 Dec 20
2
Newbie data organisation/structures question...
Howdo folks,
So my data is in this sort of format:
P T I
1 1 (1, 2, 3)
2 1 (2, 4)
1 2 (1, 3, 6, 7)
2 2 (6)
And I want to be able to quickly get:
1: The I when both P and T are given. e.g.:
P = 2, T = 2; I = (6)
2: The concatenated vector of Is when P and a subset of T is given, e.g.:
P = 1, T = 1:2; Is = (1, 2, 3, 1, 3, 6, 7)
3: The length of that vector.
It would also be nice to
2011 Nov 24
3
The contrast and Design libraries
Dear all,
I have been using the contrast library in my teaching for the last couple
of years and am right in the middle of this year's round. In the last week
R has been updated to version 2.14.0 on our computers. This has had the
unfortunate effect of meaning the contrasts library no longer works, as
the Design library is no longer available. I wonder if anyone has a fix
for this...or
2020 Mar 18
2
[GSOC] "Project: Improve inter-procedural analyses and optimisations"
On 03/16, Fahad Nayyar wrote:
> I can see that Johanned have put up some issues for GSOC aspirants. I think
> that [2] <https://github.com/llvm/llvm-project/issues/179> ([Attributor]
> Cleanup and upstream `Attribute::MaxObjectSize`) will be a very good issue
> for me, It seems doable and I can get familiar with the whole process of
> writing a patch for an issue. How should I
2000 Jul 11
1
Help: R seg faults
Dear list,
I hope this is the right forum to ask. I have just downloaded and compiled
R, but I get a segfault after I start R.
make, make test/check, went OK.
My system is
linux-2.2.13
glibc-2.1.3
gcc 2.95.2
R-1.1.0
Here is a backtrace from gdb:
(gdb) file /usr/local/lib/R/bin/R.bin
Reading symbols from /usr/local/lib/R/bin/R.bin...done.
(gdb) run
Starting program: /usr/local/lib/R/bin/R.bin
2001 Nov 20
0
Release 2.2.2 Performance
Hi ,
Recently upgraded from 2.0.6 to 2.2.2
Samba runs on an E4000 using Solaris 7 ver 11/99 32 bit
When installing VB apps on client boxes under NT 4 service pack 6A
the installation stalls for 60 secs after 34% & then completes.
For users who have Windows 2000 installed there is no problem.
Also under the previous Samba version there were no problems
installing for either NT or 2000