Displaying 20 results from an estimated 300 matches similar to: "reading in data problems"
2009 Jun 13
1
Linux, wine and lightroom
I'd love to tote a 'bells and whistles' sub-notebook though the ?800.00 plus price tag for a 10-12" screen machine which can effectively run XP or Vista and CS4 is too much considering I already own a large Tosh notebook (which I'm unwilling to haul overseas...) and two powerful desktops.
So I'm considering a cheaper, less capable sub-notebook, perhaps something around
2017 Mar 18
1
Centos-6.8 fsck and lvms
I have a CentOS-6.8 system which has a suspected HHD failure. I have
booted it into rescue mode from a CentOS-6.5 minimal install CD in
order to run fsck -c on it. The system hosts several vms. I have
activated the lvs associated with these vm using pvscan -s ; vgscan ;
vgchange -ay. An lvscan shows the lvs as ACTIVE. None are mounted.
When I try to run fsck on any of them I see the
2008 Aug 05
3
NetBSD on CentOS 5.2 Xen 3
Please I need help installing NetBSD on CentOS 5.2 running Xen 3 is a amd64
bit.
IBM xSeries 346 146G HHD. I had installed Centos 5.2 on top of CentOS 5.2
now I need to install NetBSD
Please Help.
Thanks,
Augustin
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2008 Aug 05
3
NetBSD on CentOS 5.2 Xen 3
Please I need help installing NetBSD on CentOS 5.2 running Xen 3 is a amd64
bit.
IBM xSeries 346 146G HHD. I had installed Centos 5.2 on top of CentOS 5.2
now I need to install NetBSD
Please Help.
Thanks,
Augustin
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2003 Jul 25
0
samba-3.0.0beta2-1 - lost connection to domain controller
hi,
some days ago i posted the message below. i found out that the problem
was that samba lost the connection to our nt 4.0 domain controller.
after i did "net join -w domainname -U Administrator" the probem was
solved. when i installed samba i did the net join to join our domain
with success.
yesterday we got the same problem again. the users couldnt write or
create files on the server
2016 Jun 24
2
Strange opt result
Hi,
opt -O1 converts the attached test.ll to test_opt.ll.
"
opt --version
LLVM (http://llvm.org/):
LLVM version 3.8.0
DEBUG build with assertions.
Built Jun 23 2016 (18:32:09).
Default target: i686-pc-linux-gnu
Host CPU: k8-sse3
"
test.ll:
"
; ModuleID = 'test.bc'
@__mla__system.1 = global i32 0
@0 = internal global [12 x i8] zeroinitializer
@1 = internal global
2015 Feb 01
3
hello world
On 02/01/2015 10:27 AM, Ady via Syslinux wrote:
> FWIW (this info can be found elsewhere too): _ "SYSLINUX" refers the
> install the bootloader files on the adequate boot area (see ...
Ok thanks, this also would be good information 'up front'. I can only
comment on how it could be better for a beginner, not in what is
actually available if you know where to look.
2015 Feb 01
0
hello world
> On 02/01/2015 10:27 AM, Ady via Syslinux wrote:
> > FWIW (this info can be found elsewhere too): _ "SYSLINUX" refers the
> > install the bootloader files on the adequate boot area (see ...
>
> Ok thanks, this also would be good information 'up front'. I can only
> comment on how it could be better for a beginner, not in what is
> actually
2010 Feb 07
2
Reading hierarchical data
I would like to read the following hierarchical data set. There is a family
record followed by one or more personal records.
If col. 7 is "1" it is a family record. If it is "2" it is a personal
record.
The family record is formatted as follows:
col. 1-5 family id
col. 7 "1"
col. 9 dwelling type code
The personal record is formatted as follows:
col.
2017 Nov 18
0
Complicated analysis for huge databases
The correct code is:
for (i in 1:length(SeparatedGroupsofmealsCombs)) { ...
I had mentioned that this is untested, but the error is so obvious ...
B.
> On Nov 18, 2017, at 4:40 PM, Allaisone 1 <allaisone1 at hotmail.com> wrote:
>
>
> The loop :
>
> AllMAFs <- list()
>
> for (i in length(SeparatedGroupsofmealsCombs) {
> AllMAFs[[i]] <-
2017 Nov 18
0
Complicated analysis for huge databases
Something like the following?
AllMAFs <- list()
for (i in length(SeparatedGroupsofmealsCombs) {
AllMAFs[[i]] <- apply(SeparatedGroupsofmealsCombs[[i]], 2, function(x)maf(tabulate(x+1)))
}
(untested, of course)
Also the solution is a bit generic since I don't know what the output of maf() looks like in your case, and I don't understand why you use tabulate because I would have
2013 Nov 20
3
Invalid VA => ptr conversion with xc_dom_* API after XSA-55 fox
Hi list,
Jeff and FastIce pointed out a regression between Xen 4.1.2 and 4.1.6
when starting NetBSD domU; the kernel syms table gets slightly corrupted
[1].
After dwelling into libxc code, FastIce noticed that changing back the
return value to "ptr + offset" (instead of just "ptr") for
xc_dom_vaddr_to_ptr() makes it work again.
According to [2] while fixing XSA-55, Ian
2004 Feb 24
3
Calculate Distance and Aggregate Data?
Hi all,
I've been struggling learning R and need to turn to the list again.
I've got a dataset (comma-delimited file) with the following fields: recid, latitude, longitude, population, dwelling and age. For each observation, I'd like to calculate the total number of people and dwellings and average age within 2 k.m. Distance could be Euclidean, however, a proper distance
2017 Nov 18
2
Complicated analysis for huge databases
Thanks Boris , this was very helpful but I'm struggling with the last part.
1) I combined the first 2 columns :-
library(tidyr)
SingleMealsCode <-unite(MyData, MealsCombinations, c(MealA, MealB), remove=FALSE)
SingleMealsCode <- SingleMealsCode[,-2]
2) I separated this dataframe into different dataframes based on "MealsCombination"
column so R will recognize each meal
2009 Jun 25
1
Lose of decimal when using write.table to text file
Good Day,
I have the following:
>Date<-c("08/05/08","08/06/08","08/07/08")
>Weight<-c(209.4,211.8,210.0)
>planned.meal<-cbind(Date,Weight)
>planned.meal
Date Weight
1 08/05/08, 209.4
2 08/06/08, 211.8
3 08/07/08, 210.0
>write.table(planned.meal, file="plannedMeal1.txt",
+ quote=FALSE, row.names=FALSE)
output on
2017 Nov 18
0
Complicated analysis for huge databases
On 18/11/2017 4:40 PM, Allaisone 1 wrote:
>
> The loop :
>
>
> AllMAFs <- list()
>
> for (i in length(SeparatedGroupsofmealsCombs) {
> AllMAFs[[i]] <- apply( SeparatedGroupsofmealsCombs[[i]], 2, function(x)maf( tabulate( x+1) ))
> }
>
>
> gives these errors (I tried this many times and I'm sure I copied it entirely) :-
>
> Error in
2017 Nov 18
2
Complicated analysis for huge databases
Although the loop seems to be formulated correctly I wonder why
it gives me these errors :
-object 'i' not found
- unexpected '}' in "}"
the desired output is expected to be very large as for each dataframe in the list of dataframes I expect to see maf value for each of the 600 columns! and this is only for
for one dataframe in the list .. I have around 150-200
2017 Nov 17
3
Complicated analysis for huge databases
Hi all ..,
I have a large dataset of around 600,000 rows and 600 columns. The first col is codes for Meal A, the second columns is codes for Meal B. The third column is customers IDs where each customer had a combination of meals. Each column of the rest columns contains values 0,1,or 2. The dataset is organised in a way so that the first group of customers had similar meals combinations, this
2017 Nov 19
1
Complicated analysis for huge databases
Thanks but a new error appeared with the loop :
Error in x + 1 : non-numeric argument to binary operator
I think this can be solved by converting columns (I,II,II,..600) into "numeric" instead of
the current "int" type as shown below in the structure of "33_55" dataframe .
$ 33_55:'data.frame': 256 obs. of 600 variables:
..$ MealsCombinations
2017 Nov 18
0
Complicated analysis for huge databases
> On Nov 18, 2017, at 1:52 AM, Allaisone 1 <allaisone1 at hotmail.com> wrote:
>
> Although the loop seems to be formulated correctly I wonder why
> it gives me these errors :
>
> -object 'i' not found
> - unexpected '}' in "}"
You probably did not copy the entire code offered. But we cannot know since you did not "show your code",