Displaying 20 results from an estimated 405 matches for "dicking".
Did you mean:
picking
2023 Apr 03
4
Simple Stacking of Two Columns
Hi R-Helpers,
Sorry to bother you, but I have a simple task that I can't figure out how to do.
For example, I have some names in two columns
NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly"))
and I simply want to get a single column
2023 Apr 03
1
Simple Stacking of Two Columns
Hi,
You were on the right track using stack(), but you just pass the entire data frame as a single object, not the separate columns:
> stack(NamesWide)
? values ? ind
1 ? ?Tom Name1
2 ? Dick Name1
3 ?Larry Name2
4 ?Curly Name2
Note that stack also returns the index (second column of 'ind' values), which tells you which column in the source data frame the stacked values originated
2023 Apr 04
1
Simple Stacking of Two Columns
Just to repeat:
you have
NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly"))
and you want
NamesLong<-data.frame(Names=c("Tom","Dick","Larry","Curly"))
There must be something I am missing, because
NamesLong <- data.frame(Names = c(NamesWide$Name1, NamesWide$Name2))
appears to
2023 Apr 04
1
Simple Stacking of Two Columns
I may be missing something but using the plain old c() combine function
seems to work fine:
df <- data.frame(left = 1:5, right = 6:10)
df.combined <- data.frame(comb = c(df$left, df$right))
df
left right
1 1 6
2 2 7
3 3 8
4 4 9
5 5 10
df.combined
comb
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
-----Original
2010 Nov 17
3
How to stop automount
I just put a USB hard drive into service, but find that unless the drive
is connected to my PC the machine won't boot and drops to a shell.
Below is the line I added to fstab. I thought that the option "noauto"
would prevent the machine from trying to mount the drive
/dev/sdb /usbdrive ext3 user,noauto,rw 0 2
What am I doing wrong? Any advice is
2002 Nov 11
11
Speed problem
Mermgfurt !
I have some problem with syncing two machines which are connected
over a Gigabit-connection. I'm trying to use rsync with ssh because of
the authorisation mechanisms (keys). It starts quite ok with 18 MB/s
(this small speed may have something to do with our internal net)
and falls down to 400 KB/s (!!!). This happens over a long period
because those files I want to copy are very
2006 Jan 27
8
ror/lighttpd - HTML files via port 80 become application/octet-stream?
Hi everybody
I am trying to get RoR to work with lighttpd.
Nearly there, but I am stuck with a strange phenomenon.
If I configure lighttpd to serve pages on say port 2000, I can get at my
testapp fine and see the "Welcome aboard" page.
However, if I configure lighttpd to use port 80, I get a download prompt
from my browser.
If I access my URI like
2009 Jun 02
2
Table of Summaries
Apologies for the novice question, but this is likely beyond my google
searching range..
I am trying to create a table from the summaries of a file. The 2 column
data table looks like;
Harry 335/335
Harry 124/506
Harry 124/506
Dick 133
Tom 335/335
Tom 335/335
with 1000 unique values in col 1, 300 unique in col 2. The 'summary'
doesn't seem
2010 Nov 13
2
External HD on CentOS 5.5
I'm looking into backing up my CentOS 5.5 system using an external USB
2.0 hard drive. Anyone with experience with Toshiba Canvio USB 750 GB
unit? I'm backing up to DVDs now and would like to streamline the process.
Any advice is welcome with thanks.
Dick
--
Yes indeed...the Hokey Pokey *is* what its all about!
2009 Feb 17
5
scrub on snv-b107
scrub completed after 1h9m with 0 errors on Tue Feb 17 12:09:31 2009
This is about twice as slow as the same srub on a solaris 10 box with a
mirrored zfs root pool. Has scrub become that much slower? And if so,
why?
--
Dick Hoogendijk -- PGP/GnuPG key: 01D2433D
+ http://nagual.nl/ | SunOS sxce snv107 ++
+ All that''s really worth doing is what we do for others (Lewis Carrol)
2009 Oct 02
4
GnuPG for CentOS 5.3?
Good Morning--
I'm looking to shore up security in my system and with communications.
Can you point me to the proper version of GnuPG for CentOS 5.3 (Final)?
Thanks,
Dick
--
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."
--Benjamin Franklin 1755
2016 Oct 14
0
Firefox and Chrome - dicking about with my volume.
I have Centos 7 installed on my laptop which works perfectly fine.
I use a variety of music apps including VLS, mplayer and squeezelite. They all
work fine, and using the KDE mixer app I have the levels set just as I like
them.
Why is it then that if i start up either Firefox or Chrome, whichever I start
up first creates a new sound device which appears in the mixer, and then
changes my
2009 Feb 27
3
luactive question
After a liveupgrade and luactivate I can login to the -new- BE.
My question is: do I have to luactive the -old- BE again if I want to
chose that one from the grub menu or can I just run it if I want to.
--
Dick Hoogendijk -- PGP/GnuPG key: 01D2433D
+ http://nagual.nl/ | SunOS sxce snv107 ++
+ All that''s really worth doing is what we do for others (Lewis Carrol)
2007 Oct 24
5
Access.log
I'm using Simplecast to feed 8 mount points of a 24/7 live stream to Icecast on a win platform. When I have the Statistics Relays graphing activated, I get an entry each minute in Access.log for each of the mount points.
That particular entry is pretty much useless but of course, being able to see the IP address of client drops can be useful. This log grows to mammoth proportions unless I
2005 Aug 20
2
Forcing individual clients to alternate mount points
Greetings
I'm new to the forum but have been streaming successfully with
SimpleCast/IceCast2 for about 8 months. Both Simplecast and IceCast2
are running on the same Win2K system. Now I want to do something that
has me stumped. It really is a two pronged problem.
Here's the setup:
Icecast is encoding the same live audio to multiple mount points,
allowing me to easily track the
2009 Jan 14
3
remove columns containing all zeros (or other value)
Hello-
I would like to remove the columns of a matrix that contain all zeros.
For example, from
x<-matrix(c(1,5,3,2,1,4,0,0,0), ncol=3,nrow=3)
I would like to remove the third column. However, because this is in a
loop I need a way to first determine which columns are all zeros, and
only then remove them. I.e., I don't know which column of x contains all
zeros until after x is
2009 Aug 23
23
incremental backup with zfs to file
FULL backup to a file
zfs snapshot -r rpool at 0908
zfs send -Rv rpool at 0908 > /net/remote/rpool/snaps/rpool.0908
INCREMENTAL backup to a file
zfs snapshot -i rpool at 0908 rpool at 090822
zfs send -Rv rpool at 090822 > /net/remote/rpool/snaps/rpool.090822
As I understand the latter gives a file with changes between 0908 and
090822. Is this correct?
How do I restore those files? I know
2002 May 16
1
[patch] suggestions for -v option
The attached patch makes two changes to the behavior of the -v option:
1) The initial "building file list ... done" and the last two lines
with transfer statistics are moved to verbose level 2, which means
that you have to specify -vv to see them. When I use -v, I only want
to see which files are being updated.
Perhaps the statistics could be controlled by a separate option,
2006 Mar 04
2
count("<p>") in a string
i want to count the number of paragraphs in my message of an article ,
but it gives the wrong number
example of paragraph :
<p><div class=''paragraaf''><p><h4>Dick Advocaat verdient veel geld bij
Zuid-Korea</h4><div class=''bericht''>De Zuid-Koreaanse voetbalbond legt
de Nederlandse bondscoach Dick Avocaat rijkelijk in de
2007 Apr 25
2
Parsers for input to index?
The documents we want to index come in many formats; e.g., HTML, PDF,
RTF, Word, Excel, etc., etc., etc. I''ve been searching to find parsers
that will translate each of these formats to indexable text, but have
had little success. Any help will be appreciated.
--
Posted via http://www.ruby-forum.com/.