search for: sheed

Displaying 7 results from an estimated 7 matches for "sheed".

Did you mean: seed
2008 May 18
5
Security Hole in 1.0.13?
I'm running 1.0.13 If I run dovecot for a while, I see a /var/run/dotvecot folder created with the following: drwxr-xr-x 3 root root 4096 2008-05-18 13:30 dotvecot drwxr-xr-x 3 root root 4096 2008-05-18 13:47 . drwxr-xr-x 18 root root 4096 2008-05-18 13:47 .. srw------- 1 root root 0 2008-05-18 13:47 auth-worker.15138 srwxrwxrwx 1 root root 0
2024 Jan 30
1
R interpreting numeric field as a boolean field
...oughly 2.98 million rows total), I cannot change the data type from boolean to numeric. I tried doing dataset$my_field = as.numeric(dataset$my_field), I also tried to do dataset <- dataset[complete.cases(dataset), ], didn't work either. The only thing that worked for me was to take a single sheed and through the read_excel function use the guess_max parameter and set it to a sufficiently large number (a number >= to the total amount of the full merged dataset). I want to automate the merging of the N number of Excel sheets so that I don't have to be manually doing it. Unless there is...
2009 Sep 01
0
Dovecot 1.2.4 Crashing on amd64
...he offchance that this was fixed in the nightlies, tried the 9/1/09 build, but no go. Sep 1 09:06:23 usa kernel: [955179.633005] dovecot-auth[19737]: segfault at 0 ip 0 sp 7fffc8839fa8 error 14 in dovecot-auth [400000+49000] Any ideas? dovecot -n and crash logs posted previously. Lawrence Sheed COMPUTER SOLUTIONS Room 401-402 Han Wen Xuan Building 2 No.14, 955 Yan An Middle Road Shanghai China 200040 Tel: +86 21 62890765 +86 21 62890056 Fax: +86 21 62890700 Mobile: +86 13901 802 269 Skype: computersolutions.cn Twitter: compsolutions Web: www.computersolutions.cn...
2024 Jan 30
1
R interpreting numeric field as a boolean field
...al), I cannot change the data > type from boolean to numeric. I tried doing dataset$my_field = > as.numeric(dataset$my_field), I also tried to do dataset <- > dataset[complete.cases(dataset), ], didn't work either. > > The only thing that worked for me was to take a single sheed and through > the read_excel function use the guess_max parameter and set it to a > sufficiently large number (a number >= to the total amount of the full > merged dataset). I want to automate the merging of the N number of Excel > sheets so that I don't have to be manually d...
2024 Jan 30
1
R interpreting numeric field as a boolean field
...ange the data type from >> boolean to numeric. I tried doing dataset$my_field = >> as.numeric(dataset$my_field), I also tried to do dataset <- >> dataset[complete.cases(dataset), ], didn't work either. >> >> The only thing that worked for me was to take a single sheed and through >> the read_excel function use the guess_max parameter and set it to a >> sufficiently large number (a number >= to the total amount of the full >> merged dataset). I want to automate the merging of the N number of Excel >> sheets so that I don't have to b...
2024 Jan 30
1
R interpreting numeric field as a boolean field
...rom >>> boolean to numeric. I tried doing dataset$my_field = >>> as.numeric(dataset$my_field), I also tried to do dataset <- >>> dataset[complete.cases(dataset), ], didn't work either. >>> >>> The only thing that worked for me was to take a single sheed and through >>> the read_excel function use the guess_max parameter and set it to a >>> sufficiently large number (a number >= to the total amount of the full >>> merged dataset). I want to automate the merging of the N number of Excel >>> sheets so that I don...
2024 Jan 30
1
R interpreting numeric field as a boolean field
On 30/01/2024 11:10 a.m., Paul Bernal wrote: > Dear friends, > > Hope you are doing well. I am currently using R version 4.3.2, and I have a > .xlsx file that has 46 sheets on it. I basically combined all 46 sheets > and read them as a single dataframe in R using package rio. > > I read a solution using package readlx, as suggested in a StackOverflow > discussion as