Displaying 20 results from an estimated 60199 matches for "levels".
Did you mean:
level
2004 Oct 28
5
How to help improving Wine?
Hi,
I really did my best to understand how I can help improving Wine, but I did
not succed.
Well, everything started when I installed a win application on my Debian 3.1,
Wine 2004.07.16 deb (clean install, no dlls).
The application is ALOHA (http://www.epa.gov/ceppo/cameo/aloha.htm)
It's a free application from US-Environment Protection Agency used for
chemical emergency planning (I am an
2008 Feb 20
3
reshaping data frame
...dat <- data.frame(indiv,level.1,covar.1,level.2,covar.2)
# the values of level.1 and level.2 represent the number of cases for the
particular
# combination of indiv*level*covar value
# I would like to do two things:
# 1. reshape to long reducing my.dat[,2:5] into two colums "factor" (levels=
level.1 & level.2)
# and the covariate
# 2. create one new row for each case in level.1 and level.2
# the new reshaped data.frame would should look like this:
# indiv factor covar case.id
# A level.1 4.614105 1
# A level.1 4.614105 2
# A level.2 31.064405 1
#...
2002 Jul 26
0
Encoding speed [gcc version compare]
Wow, gcc 3.1.1 generates some superior code indeed. I've included my new
results. The encoding rate results WRT -q setting haven't really changed
that much. The interesting thing was that gcc 3.1.1 gave me way better
than 10% increase in speed in some places.
All tests are conducted with a wav file being read from a RAID0 array of
two disks and written to a third disk as ogg to reduce
2006 Feb 11
1
Wine 0.9.7 failure report: hungarian tax software
Hi,
I wanted to try Wine whether it was capable of running "Abev",
the official hungarian tax software.
http://www.apeh.hu/cgi-bin/lap.php?id=prog/pr2006
Main installer is: http://www.apeh.hu/cgi-bin/pil2006.pl?abev2006telep.exe
and one has to install at least one tax form type for this software to
be usable.
Choose one of the numbered tax form installers, e.g.:
2009 Mar 16
4
IrfanView - got installer working, but program won't run
Hi guys!
I am new to Wine, and one of my all-time favourite porgrams ever, IrfanView, is the first one I'm trying to run with this emulator. I got past the installation, which needed MFC42.dll, by installing vcrun6 (MS Visual C++ 6 sp4 libraries: mfc42, msvcp60, msvcrt) using WineTricks. Now IrfanView itself still won't run.
I re-installed my system after screwing it up last week, before
2016 Sep 27
2
problem in levels<- and other inconsistencies
# A couple of years ago
# I helped making R's character NA handling more consistent
# Today I report an issue with R's factor NA handling
# The core problem is that
# levels(g) <- levels(g)
# can change the levels of g
# more details below
# Kind regards
# Jens Oehlschl?gel
# Say I have an NA element in a vector or list
x <- c("a","b",NA)
# then using split() it gets lost
split(x, x)
# as it is (somewhat) when converting to a default fact...
2012 Oct 28
3
[PATCH 00/16] treewide: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
dev_<level> create smaller objects than dev_printk(KERN_<LEVEL>.
Convert non-debug calls to this form.
Joe Perches (16):
tile: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
ata: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
drivers: base: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
block: Convert dev_printk(KERN_<LEVEL> to
2012 Oct 28
3
[PATCH 00/16] treewide: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
dev_<level> create smaller objects than dev_printk(KERN_<LEVEL>.
Convert non-debug calls to this form.
Joe Perches (16):
tile: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
ata: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
drivers: base: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
block: Convert dev_printk(KERN_<LEVEL> to
2010 Aug 18
2
functions and multiple levels
...2 3 0.8
2 3 0.7
2 4 0.6
2 4 0.4
(mean(1$level.1) - mean(1$level.2))^2
(mean(1$level.1) - mean(2$level.2))^2
etc.....
I want to write a function because I have lots of levels and lots of
different observations.
I thought this should be easy (it's my first attempt at writing a function)
but I just can't work it out!
Thanks
Chris
--
View this message in context: http://r.789695.n4.nabble.com/functions-and-multiple-levels-tp2329935p2329935.html
Sent from the R h...
2017 Jun 15
2
duplicated factor labels.
Dear R devel
I've been wondering about this for a while. I am sorry to ask for your
time, but can one of you help me understand this?
This concerns duplicated labels, not levels, in the factor function.
I think it is hard to understand that factor() fails, but levels()
after does not
> x <- 1:6
> xlevels <- 1:6
> xlabels <- c(1, NA, NA, 4, 4, 4)
> y <- factor(x, levels = xlevels, labels = xlabels)
Error in `levels<-`(`*tmp*`, value = if (nl ==...
2009 Jul 07
0
[PATCH] speed up snapshot dropping
This patch contains two changes to avoid unnecessary tree block reads during
snapshot dropping. First, check tree block''s reference count and flags before
reading the tree block. if reference count > 1 and there is no need to update
backrefs, we can avoid reading the tree block. Second, save when snapshot was
created in root_key.offset. we can compare block pointer''s
2009 May 22
1
regrouping factor levels
Hi all,
I had some trouble in?regrouping factor levels for a variable. After some experiments, I have figured out how I can recode to modify the factor levels. I would now like some help to understand why some methods work and others don't.
Here's my code :
rm(list=ls())
###some trials in recoding factor levels
char<-letters[1:10]
fac<-f...
2011 Mar 17
4
Help with plotting a line that is multicoloured based on levels of a factor
Hi All,
I'm trying to plot data that is a time series of flows that are associated
with a specific level, and I would like each level to represent a colour
in a line plot. Here is some data that approximates what I'm using:
date=c(1:300)
flow=sin(2*pi/53*c(1:300))
levels=c(rep(c("high","med","low"),100))
data=cbind.data.frame(date, flow, levels)
the "levels" column represents the levels of flow. What I've done so far
is to plot this data using coloured points corresponding with each flow
level:
colour=ifelse(dat...
2010 Feb 24
2
Question:How to get rid of missing values
Hi,
I want to draw a pie chart of level (variable) for each ID (variable). I have a big dataset, here I attach part of it.
ID level
1 G1
1 A1
1 A1
1 G1
1 G1
1 G1
1 A1
1 A1
1 G1
1 G1
1 G3
1 A1
1 G1
1 A1
1 A1
1 A2
1 A2
1 M
1 A1
1 G1
1 A1
1
1
1 A2
1 G3
1 A1
1 A1
1 A1
Below is my r code:
level <- na.exclude(level)
level.table <- table(level)
level.sum <-
2012 Nov 20
1
tcl/tk problem with tklistbox,the " " character and Rcmdr.
I everyone,
i have a little problem with tklistbox,the " " character and Rcmdr.
Please look at this code
require(tcltk)
tt<-tktoplevel()
levels.list2 <-tklistbox(tt,selectmode="multiple",exportselection="FALSE",
height=4, yscrollcommand=function(...)tkset(levels.list2.scroll,...))
levels.list2.scroll<-tkscrollbar(tt,repeatinterval=5,command=function(...)tkyview(levels.list2,...))
tkgrid(levels.list2,levels.list2....
2010 Mar 01
2
Thougt I understood factors but??
Hi,
consider the following
> a<-gl(3,3,9)
> a
[1] 1 1 1 2 2 2 3 3 3
Levels: 1 2 3
> levels(a)<-3:1
> a
[1] 3 3 3 2 2 2 1 1 1
Levels: 3 2 1
> a<-gl(3,3,9)
> factor(a,levels=3:1)
[1] 1 1 1 2 2 2 3 3 3
Levels: 3 2 1
It is probably something obvious I missed, but reading the documentation
of factor, and levels I would have thought
that both should produce th...
2005 Jul 18
1
levels() deletes other attributes
Dear All,
it seems to me that levels() deletes other attributes. See the following
example:
## example with levels
f1 <- factor(c('level c','level b','level a','level c'), ordered=TRUE)
attr(f1, 'testattribute') <- 'teststring'
attributes(f1)
levels(f1) <- c('L-A', '...
2023 Aug 24
1
Crash on "samba-tool domain level raise --domain-level=2016 --forest-level=2016"
Hi, today I updated my DC debian 12 to samba 4.19rc2 from mjt repository
and I tried to increase feature level of domain but failed.
First 2 commands was ok:
samba-tool domain schemaupgrade --schema=2019
samba-tool domain functionalprep --function-level=2016
the third instead failed:
> samba-tool domain level raise --domain-level=2016 --forest-level=2016
> ERROR(<class
2009 Nov 13
1
spss imports--trouble with to.data.frame
...d2 <- read.spss ()
d2 <- as.data.frame(d2)
The former causes all data to become <NA> but the latter seems mostly OK.
> library(foreign)
> d2 <- read.spss("ESS3e03_2.por")
warnings()
There were 12 warnings (use warnings() to see them)
> Warning messages:
1: In `levels<-`(`*tmp*`, value = c("CENTRUMP", "", "FIDESZ", ... :
duplicated levels will not be allowed in factors anymore
2: In `levels<-`(`*tmp*`, value = c("CENTRUMP", "", "FIDESZ", ... :
duplicated levels will not be allowed in factors...
2018 Apr 05
3
[RFC] Adding function attributes to represent codegen optimization level
On 2018-04-04 22:00, Mehdi AMINI wrote:
> Le mar. 3 avr. 2018 à 12:47, via llvm-dev <llvm-dev at lists.llvm.org> a
> écrit :
>
>> All,
>> A recent commit, D43040/r324557, changed the behavior of the gold
>> plugin
>> when compiling with LTO. The change now causes the codegen
>> optimization
>> level to default to CodeGenOpt::Default (i.e., -O2)