Displaying 20 results from an estimated 11210 matches for "somewhat".
2010 Aug 05
3
Plotting range of values in barplot()
...umber
of responses even in the event that there are 0 responses. For example, I
have a data set that contains values of 2, 3, 4, and 5 but I would also like
my graph to show that there are no 1's.
I have attached the resulting graph. The appropriate values should be 0 -
Strongly Disagree, 1 - Somewhat Disagree, 2 - Neutral, 7 - Somewhat Agree,
and 12 - Strongly Agree.
Any suggestions would be much appreciated as I am new to R.
Thanks,
Steve
http://r.789695.n4.nabble.com/file/n2315414/graph.jpg
--
View this message in context: http://r.789695.n4.nabble.com/Plotting-range-of-values-in-bar...
2013 Feb 21
3
Having trouble converting a dataframe of character vectors to factors
...with sapply or similar function?
Data for reproducibility:
scs2<-structure(list(Q1_1 = c("very important", "very important", "very important",
"very important", "very important", "very important", "very important",
"somewhat important", "important", "very important"), Q1_2 = c("important",
"somewhat important", "very important", "important", "important",
"very important", "somewhat important", "somewhat important"...
2024 Jul 14
0
grep
Yes. Any of the following worked. The pipe greater than (|>) is neat!
Thanks.
> v<-goprobit.p$est
> names(v) |> grep("somewhat|very", x = _)
?[1]? 6? 7? 8? 9 10 11 12 13 28 29 30 31 32 33 34 35 50 51 52 53 54 55
56 57
> v |> names() |> grep("somewhat|very", x = _)
?[1]? 6? 7? 8? 9 10 11 12 13 28 29 30 31 32 33 34 35 50 51 52 53 54 55
56 57
> which(grepl("very|somewhat",names(v)))...
2003 Nov 11
4
OT: Document Control System?
I'm sorry this is somewhat offtopic, but I do plan to use this to help
me create documentation for the * project.. so I guess it is somewhat on
topic :)
Anyways, I am looking for some sort of document control system. It
should act somewhat like a CVS where it keeps previous versions, allows
people to submit documentati...
2024 Jul 12
1
grep
Could not get "which" to work, but my grep worked. Thanks.
> which(grep("very|somewhat",names(goprobit.p$est))) Error in
which(grep("very|somewhat", names(goprobit.p$est))) : argument to
'which' is not logical > grep("very|somewhat",names(goprobit.p$est)) [1]
6 7 8 9 10 11 12 13 28 29 30 31 32 33 34 35 50 51 52 53 54 55 56 57
On 7/12/2024 5:26...
2011 Aug 16
1
getting names of dimnames of xtabs into xtable latex output
...et" and "mydiet". Is there a way to
have xtable incorporate these names directly into the latex output.
Thanks for your help.
table2 <- structure(c(26, 0, 40, 0, 10, 0, 188, 0, 281, 0), .Dim = c(5L,
2L), .Dimnames = structure(list(change_diet = c("Don't know",
"Somewhat likely", "Somewhat unlikely", "Very likely", "Very unlikely"
), mydiet = c("0", "1")), .Names = c("change_diet", "mydiet"
)), class = c("xtabs", "table"))
table2
library(xtable)
xtable(table2)
> s...
2024 Jul 12
2
grep
...M, Uwe Ligges wrote:
>
>
> On 12.07.2024 10:54, Steven Yen wrote:
>> Below is part a regression printout. How can I use "grep" to identify
>> rows headed by variables (first column) with a certain label. In this
>> case, I like to find variables containing "somewhath",
>> "veryh",?"somewhatm", "verym", "somewhatc", "veryc","somewhatl",
>> "veryl". The result should be an index 6:13 or 6,7,8,9,10,11,12,13. Note
>> that they all contain "somewhat" and "ver...
2002 Apr 12
1
Once again somewhat mystified with exclude rules
I go thru this every few mnths it seems. Rsyncs exclude rules are
very sophisticated but because of that somewhat unfathomable at times.
Simplified:
I want to exclude directories named no_bak anywhere in the tree
but only the files under them, not the direcrories themselves.
My exclude rules look like:
no_bak/*
/no_bak/*
The first one does catch directories by that name on the first level
but this one flies...
2013 Mar 28
4
bayesian HLM random effects
Hello, all.
I've been working on this for sometime and was almost at the end/ last chunk of code i would need.... When I received an error. Rather than go to bed and think about it in the morning, I messed with my data and now I am not getting anything. I was up until 4am trying to fix this.
Zip files of my data are attached (the data which ends in 'a' matches with wvsA and the
2012 Nov 09
3
if between 500-600 give 550
I have a data frame somewhat like this:
myframe <- data.frame (ID=c(2,3,4,5), Hunger =c(415,452,550,318 ))
myframe
Now I would like to add a column to the right which summarizes the values
for Hunger somewhat to reduce the number of values: If the values for Hunger
are between
300-400 I would like to insert the number 3...
2004 Dec 02
0
A somewhat off the line question to a log normal distribution
...+39 02 43828 247
E-mail: kahra at mpsgr.it
Web: www.mpsam.it
-----Original Message-----
From: r-help-bounces at stat.math.ethz.ch
[mailto:r-help-bounces at stat.math.ethz.ch]On Behalf Of Siegfried Gonzi
Sent: Thursday, December 02, 2004 10:18 AM
To: r-help at stat.math.ethz.ch
Subject: [R] A somewhat off the line question to a log normal
distribution
Hello:
Oh yes I know it isn't so much related to R, but I gather there are a
lot of statisticians reading the mailing list.
My boss repeatedly tried to explain me the following.
==
Lets assume you have got daily measurements of a variable...
2004 Mar 18
0
User Profiles somewhat broken
...the Samba manual and look at group memberships.
It's been at least a year since I was on top of things.
Thanks,
DAM
-----Original Message-----
From: Matthias Spork [mailto:samba@matthiasspork.de]
Sent: Thursday, March 18, 2004 00:29
To: damason@redshift.com
Subject: AW: [Samba] User Profiles somewhat broken
Hello,
> The curious thing with the XP and 2k stations is that the user seems
> somehow limited if he is not a local admin on his workstation, and
> this happens both with roaming and with local profiles.
In Samba, you have three groups:
Domain Admins NT Administrators
Doma...
2008 May 13
10
Somewhat OT:
Hi,
I'm looking for a monitoring system that support snmp v3. I want to
monitorize linux servers and network switches. Currently, I am trying
to use zabbix, but sadly, it lack at present features that I need. For
example, I want to get reporting screens with data and graphs from
network switches, I'd like to configure one only port of a given
switch and that is used as templates for the
2004 Sep 08
4
factor always have type integer
...iables automatically are converted
to factors when imported into data frames.
Here is an example:
> v1<-1:3
> v2<-c("a","b","c")
> df<-data.frame(v1,v2)
> typeof(v2)
[1] "character"
> typeof(df$v2)
[1] "integer"
It is somewhat surprising that
the types of v2 and df$v2 are different.
the answer is to do
levels(df$v2)[df$v2]
but that is somewhat involved.
Should the types not be identical, and typeof applied to factors
return the type of the levels?
--
Erich Neuwirth, Computer Supported Didactics Working Group
Visit o...
2009 Jan 19
3
[somewhat OT] seeking ideas/input for my thesis
Hello VoIP guys
Sorry for being somewhat off-topic. At the moment I am studying
informatics in the seventh semester and I need to start thinking about
my thesis. As I am very interested in VoIP technologies I thought about
picking this as my main topic. So far I have only little experience in
this area. I have been fiddling around with si...
2009 Jan 27
5
v1.1.10 released
http://dovecot.org/releases/1.1/dovecot-1.1.10.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.10.tar.gz.sig
v1.1.9 wasn't such a great release. Once again: Would be great if
someone started a proper testing suite so releases could be tested..
- Maildir: Keyword handling was somewhat broken in v1.1.9
- userdb prefetch was broken with blocking passdbs in v1.1.9
- dict process didn't always die with the rest of Dovecot
- dict quota was somewhat broken with pgsql
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: applica...
2009 Jan 27
5
v1.1.10 released
http://dovecot.org/releases/1.1/dovecot-1.1.10.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.10.tar.gz.sig
v1.1.9 wasn't such a great release. Once again: Would be great if
someone started a proper testing suite so releases could be tested..
- Maildir: Keyword handling was somewhat broken in v1.1.9
- userdb prefetch was broken with blocking passdbs in v1.1.9
- dict process didn't always die with the rest of Dovecot
- dict quota was somewhat broken with pgsql
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: applica...
2024 Jul 12
0
grep
...-18.6277
0.0000 -4.4572e-04 *** x.1.primary -0.0694 0.0289 -2.4002 0.0164
-9.9638e-06 ** x.1.middle -0.2909 0.0356 -8.1657 0.0000 -1.4913e-05 ***
... > rownames(v) [1] "x.1.age" "x.1.sleep" "x.1.primary" "x.1.middle"
[5] "x.1.high" "x.1.somewhath" "x.1.veryh" "x.1.somewhatm" ...Treating
it as the first column does not work, because the first column contains
the numbers. > v[,1] [1] 0.0341 -0.1108 -0.0694 -0.2909 -0.4267 -0.6188
-0.7580 -0.3413 -0.3813 [10] -0.3101 -0.2977 -0.6310 -0.9132 0.1885
-0.0887 -0.08...
2016 May 06
6
Firefox 45.1.0 stability
Good afternoon,
Apologies if this topic has come up before but I've found
that the Firefox 45.1.0 stability to be somewhat lacking.
For example, I can't use it for Twitter because it crashes.
It also crashes when I log into gmail. This happens every
time I try these URL's.
Any suggestions on improving the stability?
Thanks!
Jeff
2016 Feb 26
0
[PATCH 4/4] pmu/fuc: movw is somewhat weird on gk208, use mov instead
currently there is no change, because nobody uses those macros yet, but they
shouldn't stay broken
Signed-off-by: Karol Herbst <nouveau at karolherbst.de>
---
drm/nouveau/nvkm/subdev/pmu/fuc/macros.fuc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drm/nouveau/nvkm/subdev/pmu/fuc/macros.fuc b/drm/nouveau/nvkm/subdev/pmu/fuc/macros.fuc
index 0d5cbeb..bb59eb4