Displaying 20 results from an estimated 1100 matches similar to: "Error in make.names when trying to read.table in if statement"
2011 Apr 04
4
merging data list in to single data frame
Dear R community members
I did find a good way to merge my 200 text data files in to a single data
file with one column added will show indicator for that file.
filelist = list.files(pattern = "K*cd.txt") # the file names are K1cd.txt
.................to K200cd.txt
data_list <-lapply(filelist, read.table, header=T, comment=";", fill=T)
This will create list,
2024 Feb 19
5
Looping
I need to read csv files repeatedly, named data1.csv, data2.csv,? data24.csv, 24 altogether. That is,
data<-read.csv(?data1.csv?)
?
data<-read.csv(?data24.csv?)
?
Is there a way to do this in a loop? Thank you.
Steven from iPhone
[[alternative HTML version deleted]]
2014 Apr 28
2
Re: [supermin] Be smarter about finding suitable kernel images
* Richard W.M. Jones:
> On Sat, Apr 26, 2014 at 02:27:07PM +0200, Hilko Bengen wrote:
>> ---
>> src/kernel.ml | 43 ++++++++++++++++++++++++++++---------------
>> 1 file changed, 28 insertions(+), 15 deletions(-)
>>
>> diff --git a/src/kernel.ml b/src/kernel.ml
>> index ed5aea3..436b1b0 100644
>> --- a/src/kernel.ml
>> +++ b/src/kernel.ml
2014 Apr 26
2
[supermin] Be smarter about finding suitable kernel images
---
src/kernel.ml | 43 ++++++++++++++++++++++++++++---------------
1 file changed, 28 insertions(+), 15 deletions(-)
diff --git a/src/kernel.ml b/src/kernel.ml
index ed5aea3..436b1b0 100644
--- a/src/kernel.ml
+++ b/src/kernel.ml
@@ -23,6 +23,19 @@ open Utils
open Ext2fs
open Fnmatch
+let patt_of_cpu host_cpu =
+ let models =
+ match host_cpu with
+ | "mips" |
2009 Mar 17
2
[LLVMdev] Looking for a Reaching Definition Analysis
Hello,
I am a newbie to LLVM as well as compilers and I am hoping for some
direction in finding an instance of where a Reaching Definition Analysis is
being implemented within LLVM. I have referenced the sources files,
initially hoping to find an explicit ReachingDefinitionAnalysis.cpp file ;-)
but with no such luck. Other than that I have found the files
SimpleRegisterCoalescing.cpp and the
2014 Jun 03
2
Re: libguestfs supermin error
Hi Rich
But there is no src/kernel.ml file on my ubuntu powerpc to which the
above patch is reffering.
I have installed supermin as supermin_5.1.8-2_powerpc.deb debian package.
Thanks
On Tue, Jun 3, 2014 at 7:16 PM, Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Tue, Jun 03, 2014 at 06:55:49PM +0530, abhishek jain wrote:
> > supermin: failed to find a suitable kernel
2005 Jun 14
0
CentOS-announce Digest, Vol 4, Issue 7
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2009 Mar 17
2
[LLVMdev] Looking for a Reaching Definition Analysis
Thanks for the response. I was more specifically looking through the source
code for a place where Reaching Definitions was implemented to derive those
uses and/or to generate the SSA. To provide some context, as a student I
have a project to implement a path infeasibility algorithm to "Sharpen" the
results of the Reaching Definitions results in LLVM. Being new to LLVM I
wasn't
2014 Apr 30
2
Problem with Renaming R object
Hi,
I have a problem in renaming R object and saving them within a loop. For ex:
for (i in 1:length(all_files))
{
uncov_GR <- "variable created in loop"
filename <- paste0(sample_name[[i]],"_uncov", ".Rdata"))
save(uncov_GR,file=filename)
}
Within the above short code (out of a long program), I want to
2009 Mar 17
0
[LLVMdev] Looking for a Reaching Definition Analysis
The immediate uses info provides reaching definitions already, at
least while the code is in SSA form.
So uh, what more are you looking for?
2009/3/17 Shone Sadler <shone.sadler at gmail.com>:
> Hello,
>
>
> I am a newbie to LLVM as well as compilers and I am hoping for some
> direction in finding an instance of where a Reaching Definition Analysis is
> being implemented
2014 Jun 04
2
Re: libguestfs supermin error
Hi Rich
Kindly ignore my previos mail.
I have downloaded the latest version of supermin supermin-5.1.8 and have
compiled it for powerpc.Moreover there was no need to patch the src/
kernel.ml file as the changes were already implemented on the latest
version.
But still when i run libguestfs-test-tool on powerpc ubuntu,I get the below
logs..
libguestfs-test-tool
2011 Nov 12
2
dev.new() within a loop
Hello,
I have a loop where I iterate performance data files within a folder, parse and plot them in one shot (see below).
However, when executing plot_raw which invokes dev.new(..) all windows come out blank whereas if I execute each file outside of a loop then I can see the plots properly. What's wrong here?
Thanks in advance,
Best regards,
Giovanni
# given a directory name, it will
2003 Apr 28
2
sum(..., na.rm=TRUE) oddity
Hi all,
I get two different results when using sum() and the switch na.rm. The
result is correct when na.rm=FALSE.
Linux Redhat 7.3, R version 1.6.1.
I've had no luck searching the mail archives, so I was hoping somebody
could explain/check this one for me. I will need to apply the function
to missing data, simple as it is.
Code:
x<-matrix(runif(20,0,5)%/%1,4,5) # random matrix
2009 Mar 18
0
[LLVMdev] Looking for a Reaching Definition Analysis
2009/3/17 Shone Sadler <shone.sadler at gmail.com>:
> I was more specifically looking through the source
> code for a place where Reaching Definitions was implemented to derive those
> uses and/or to generate the SSA.
mem2reg (llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp)
transforms to SSA form, but that's the conventional SSA construction
algorithm, which doesn't
2017 Aug 03
14
[PATCH supermin 0/9] kernel: Multiple fixes to handling of kernels (RHBZ#1477758).
This patch series fixes several problems in the way that supermin
handles kernels. The most pressing problem is that supermin doesn't
handle bogus vmlinuz files which aren't actual kernels. Along the way
there is a lot of clean up.
The patches look much better if you view them with ‘-w’.
This series will require plenty of time to be tested in Fedora,
especially on non-x86 arches.
2002 Oct 25
2
re: problem installing library sm
Hi All,
I am having trouble installing the sm package, and only the sm package.
My box is RedHat 7.3 on a PIV. Readline 4.3-3 is installed (suited for
RH 8, but same error under readline 4.2 for RH 7.3), but it seems to be
looking for the readline library in the wrong directory. Will installing
readline 4.1 do the trick? What else could be done?
Rohan Sadler
[root at rsadler R]# R CMD
2002 Jun 25
4
re: GUI's for teaching
Dear All,
This is a question to sound out possibilities.
I am with the Faculty of Natural and Agricultural Sciences at the
University of Western Australia, representing a few of the more
statistically minded in the faculty. Essentially, there have been
problems in the past with software support, changing over statistical
software, and paying lots of money for it. In R you have an advanced
2010 Feb 01
2
Loading data from folder
Hi,
I am trying to load csv type data from a folder. However, rather than
syntax that simply loads one file at a time I was wondering if there
is a method that loads all data from a specific folder.
For instance, I have the following data files in a folder nebraskaStats:
10-1-2009_10-7-2009.txt
10-2-2009_10-8-2009.txt
10-3-2009_10-9-2009.txt
....etc. (245 total files in folder)
Each file
2008 Dec 15
2
How to fetch specific part from a number of Text files?
Hi all,
I my c: drive I have possibly 1,000 notepad files, with .txt extension. They
are named as the dates on which they were saved i.e. 1st file name is
"Volume_4-18-2008", 2nd one is "Volume_4-21-2008", 3rd one
"Volume_4-22-2008" and so on............
Also, content of each file are in same format like :
******** content of 1st file *************
section : 1
2017 Sep 28
0
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
On Thu, Sep 28, 2017 at 12:11 PM, Zhou, Cynthia (NSB - CN/Hangzhou) <
cynthia.zhou at nokia-sbell.com> wrote:
>
>
> The version I am using is glusterfs 3.6.9
>
This is a very old version which is EOL. If you can upgrade to any of the
supported version (3.10 or 3.12) would be great.
They have many new features, bug fixes & performance improvements. If you
can try to reproduce