Displaying 20 results from an estimated 25 matches for "suppposed".
Did you mean:
supposed
2011 Aug 11
2
Removing all duplicate row except by one
Hi,
It's my problem, supppose that we have a data.frame:
t
a b c
1 1 1 1
2 0 1 1
3 1 1 1
4 0 0 0
5 1 0 1
6 0 1 0
7 1 1 1
8 0 1 0
I need extract duplicat row i.e i nedd frame like this
a b c
3 1 1 1
8 0 1 0
I try use subset(t, duplicated(t)) and t[duplicated(t), ] but this command
return
a b c
3 1 1 1
7 1 1 1
8 0 1 0
Best
Marcin M.
--
View this message in context:
2011 Jul 04
3
Unusual graph- modified wind rose perhaps?
...ink it could. :)
I don't think I've ever seen exactly this layout. Does anyone know if there is anything in R that does a graph like this or that can be adapted to do it.
Unfortunately my Spanish is non-existent so I am not sure how effective the graph is in achieving whatever it's suppposed to do. A dot chart might be as effective but it is a flashy graphic.
Thanks
2006 Apr 05
1
where do you put Classes in RoR
...e
def aaaa
end
end
#main program
yadayada = function_name(parameter)
I understand:
- the main program goes in a controller I have to create
- but where am I suppose to put the Class stuff?
I''ll re-use the Class stuff for different controllers but I''m not sure
where it is suppposed to go. Thanks.
-T
--
Posted via http://www.ruby-forum.com/.
2005 Aug 06
1
Softick Card Export on Linux with Palm Tungsten E
Hello,
I just installed Softick Card Export 2.19
(http://www.softick.com/cardexport2/) on my Palm Tungsten E. It is
supposed to let me access the SD card inside my Palm without the need of
an external SD card reader. This software is suppposed to be compatible
with Linux usb-storage since version 2.15... but I didn't find how to
use it.
If I do "lsmod | grep -i usb", I see the following:
usb_storage 61193 0
scsi_mod 121293 2 sd_mod,usb_storage
usbserial 25769 1 visor
Anybody have...
2025 Jan 19
2
Parser For Line Number Tracing
Hi Duncan ? Wonderful. Thank you. Bug or no bug, I think it would be
a huge improvement for user-friendliness if R printed the last line by
default *every time* a script dies. Most computer languages do so.
Should I file it as a request for improvement to the R code
development team? Maybe R can be improved at a very low cost to the
development team and a very high benefit to newbies.
2025 Jan 19
1
Parser For Line Number Tracing
On 2025-01-18 8:27 p.m., Ivo Welch wrote:
> I am afraid my errors are worse! (so are my postings. I should have
> given an example.)
>
> ```
> x <- 1
> y <- 2
> nofunction("something stupid I am doing!")
> z <- 4
> ```
>
> and
>
> ```
>> source("where-is-my-water.R")
> Error in nofunction("something stupid I am
2006 Oct 30
2
Ugly menu/dialog font of applications, using debian sarge and wine 0.9.8 and 0.9.22
hello,
I have a problem with an unsuitable font in the
windows menus/dialogs with the above versions of wine
(dont think this depends much on the versions, though.
Have not tried other versions so far.) when using
debian sarge.
The font seems to look a bit ugly, usually destroys
partly the menu/dialog structures, and, most
important, has no German umlaut's (the diphtongs ae,
oe, ue and
2025 Jan 19
3
[External] Re: Parser For Line Number Tracing
On Sun, 19 Jan 2025, Ivo Welch wrote:
> Hi Duncan ? Wonderful. Thank you. Bug or no bug, I think it would be
> a huge improvement for user-friendliness if R printed the last line by
> default *every time* a script dies. Most computer languages do so.
>
> Should I file it as a request for improvement to the R code
> development team? Maybe R can be improved at a very low cost
2006 Oct 31
1
Re: Ugly menu/dialog font of applications, using debian
> Message: 5
> Date: Mon, 30 Oct 2006 13:46:57 +0100
> From: Jens Gulden <mail@jensgulden.de>
> Subject: Re: [Wine] Ugly menu/dialog font of applications, using
> debian sarge and wine 0.9.8 and 0.9.22
> To: wine-users@winehq.org
> Message-ID: <4545F441.4080606@jensgulden.de>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hallo Wolfram,
2025 Jan 19
1
[External] Re: Parser For Line Number Tracing
Thanks for pointing out the options. Using
options(show.error.locations = TRUE)
works on Ivo's example, but it doesn't show a location if the error
happens in a function that doesn't have srcrefs, because the known
location isn't on the top of the stack.
Perhaps TRUE (and maybe "top"?) should look back through the stack until
it finds a known location, and
2025 Jan 20
2
[External] Re: Parser For Line Number Tracing
I've posted a patch to bugs.r-project.org that fixes the traceback()
issue. It's not specific to findFun3; you get the same problem with
errors from expressions like
1 + "a"
In my testing, I occasionally saw cases where show.error.locations =
TRUE didn't work. I'll try to track down a reproducible case, and
perhaps a patch to fix it.
Duncan Murdoch
On
2025 Jan 20
1
[External] Re: Parser For Line Number Tracing
Sorry, I'm not seeing the first problem now:
options(show.error.locations = TRUE) works fine. Not sure what I did
wrong before.
I'm still seeing `traceback()` failing to report the attempt to call
nofunction(). I suppose this is because a context is never set up for
the failed call. Perhaps findFun3 could set up a fake context so that
traceback() adds one more entry?
Duncan
2009 Jun 18
12
Best way to use iSCSI in domU
Hello,
We need to use iSCSI in some of our domUs. By the moment, iSCSI is not
for system filesystem, but for data filesystem.
I am wondering what is the best way to use it. Is it better to
configure it in dom0 and then attach the device to the domU? Or is it
better to configure it directly in the domU?
I am thinking that if we configure it in the dom0, then we can''t share
that iscsi
2025 Jan 19
1
[External] Re: Parser For Line Number Tracing
understood.
but, please, consider not people like me but unwary beginners and
students of R. I have used R now for decades, and even I am baffled
by it. Couldn't you make R code easier to debug not only for people
like me (who can indeed tweak their environments) but also for novice
users?
On Sun, Jan 19, 2025 at 8:46?AM <luke-tierney at uiowa.edu> wrote:
>
> On Sun, 19 Jan
2025 Jan 21
1
[External] Re: Parser For Line Number Tracing
And now I've found the elusive bug in show.error.locations = TRUE as
well, and posted a patch for that too.
Back to the original topic of this thread: I think most users should
routinely use
options(show.error.locations = TRUE)
e.g. in their .Rprofile.
That will often speed up bug fixes, especially if my patch is incorporated.
Duncan Murdoch
On 2025-01-20 5:56 p.m., Duncan Murdoch
2025 Jan 19
1
Parser For Line Number Tracing
I am afraid my errors are worse! (so are my postings. I should have
given an example.)
```
x <- 1
y <- 2
nofunction("something stupid I am doing!")
z <- 4
```
and
```
> source("where-is-my-water.R")
Error in nofunction("something stupid I am doing!") :
could not find function "nofunction"
```
and no traceback is available.
2007 Feb 02
0
Easy Earnings with Flextime
Hello,
We hope you are reading this message in a fine mood.
I'd like to welcome you on a very interesting opportunity.
We supppose you will be very interested in a home job in which you
could get about AUD4000 per month.
This job will not affect your present career, it will only take a small
part of your free time. The only things you will need to have to start
running your business with
2005 Nov 21
0
Re: 802.1x machine authentication patch help
...aking last nights cvs snapshot and copying over the
rlm_chap
> folder overwriting the contents of the same folder in the
> freeradius-1.0.5 release and recompiling. I see that it is trying
to
> pass the username as "host/IS--000031176". I thought the updated
> rlm_mschap was suppposed to strip the "host/" part of the username.
Do
> I need to create a realm to strip the "host/"?
> Any help would be appreciated!!!
> Thanks,
> jamie
>
>
> make clean
>
> ./configure --configure --with-raddbdir=/etc/radius
> --with-logdir=/var/log/ra...
2006 Feb 27
3
Updates on Centos 4
Hi,
I have a server that has been running Centos for about a year but
I have not checked to see if there have been any changes to update.
Has there been any updates or fixes for the update? I have not been in
the loop for a while now. Thanks!
-- Dexter
Desire is the ingredient that changes the hot
water of mediocrity to the steam of outstanding
success. It's the ingredient that enables a
2003 Mar 18
2
Wildcards (include)
Hi,
I'm trying to synchronize some directories.
Let's say I need to synchronize:
/web/sites
/var/qmail/control
/home/ken
I don't want to run 3 rsync commands. I have already tried
using --include --exclude options, but it didn't work at all.
I supppose my command should be as follows:
rsync -azvl --include-from=includes --exclude='*' / username@host.com:/ken/backup/