search for: percent

Displaying 20 results from an estimated 1799 matches for "percent".

2009 Nov 12
1
XML: Reading transition matrices into R
...or her head. Any help appreciated. Thanks and best, Stefan <?xml version="1.0" encoding="UTF-8" standalone="no"?><transitionmatrix> <transition><age>0</age><sex>0</sex><from>1</from><to>1</to><percent>99.99999</percent></transition><transition><age>0</age><sex>0</sex><from>1</from><to>2</to><percent>0.0</percent></transition><transition><age>0</age><sex>0</sex><from>1</fr...
2012 Aug 31
7
splits with 0s in middle columns
Hi, A column of my df looks like A 10/20/30 40/20 60/10/10/5 80/10 I want to split it such that the last column has the last composition and if there are not enough the middle columns get the 0s. That way my df would look like A1 A2 A3 A4 10 20 0 30 40 0 0 20 60 10 10 5 80 0 0 10 How can I do that ?? [[alternative HTML version deleted]]
2009 Oct 04
1
Paste a character to an object
Dear List, I can't seem to get a simple paste function to work like I need. I have an object I need to call but it ends in a character string. The object is a list of home range values for a range of percent isopleths. I need to loop through a vector of percent values, so I need to paste the percent as a character on the end of the object variable. I have no idea why the percent is in character form, and I can't use a simple index value (homerange[[1]]$polygons[100]) because there are a variable...
2020 May 03
2
Understanding VDO vs ZFS
sorry corrections: For this test I created a 40GB lvm volume group with /dev/sdb and /dev/sdc then a 40GB LV then a 60GB VDO vol (for testing purposes) vdostats --verbose /dev/mapper/vdoas | grep -B6 'saving percent' output from just created vdoas [root at localhost ~]# vdostats --verbose /dev/mapper/vdoas | grep -B6 'saving percent' physical blocks : 10483712 logical blocks : 15728640 1K-blocks : 41934848 1K-blocks used...
2005 Nov 01
1
percent rank by an index key?
What is the easiest way to calculate a percent rank “by” an index key? Foe example, I have a dataset with 3 fields: Year, State, Income , I wish to calculate the rank, by year, by state. I also wish to calculate the “percent rank”, where I define percent rank as rank/n. (n is the number of numeric data points within each d...
2009 Feb 15
2
How to plot image of contour in percent?
I have searched this forum with keywords contour and percent, it only give one irrelevent result. My problems is how to plot contour in percent. In my figure, I have use kde2d to generate density of an array with two dimension point. Using image and contour could plot it. But the line contour generated represent absolute value of population, not how much pec...
2019 Jul 02
3
Percent character in mail_crypt_private_password not possible
Hello, I am using the mail_crypt plugin with Dovecot 2.3 and have issues trying to use a mail crypt private password which contains a percent "%" character as you can see below: $ doveadm -o plugin/mail_crypt_private_password=SomethingWith\%Percent mailbox cryptokey generate -u email at domain.tld -URf doveadm(email at domain.tld): Error: Failed to expand plugin setting mail_crypt_private_password = 'SomethingWith%Percent...
2009 Jul 16
2
putting circles/buffers arround points on a 2D graph/plot
...wobbly' shape, so ideally I'd like something that follows the shape the points make. I'll start by explaining what I've got (I'm sorry if it's a little long, but it's all important for explaining what I want to do): I have a simple 2D plot of an x variable, called 'percent.forest'', and a y variable called 'metric'. the data for this plot is in a large data frame with a third variable called 'Buffer', there are 5 buffer sizes (250, 500, 1000, 3000, 10000). to create the plot I simply used >plot(percent.forest,metric) to add in the data a...
2005 Jul 26
4
elegant solution to transform vector into percentages?
Hi, I am looking for an elegant way to transform a vector into percentages of values that meet certain criteria. store<-c(1,1.4,3,1.1,0.3,0.6,4,5) # now I want to get the precentages of values # that fall into the categories <=M , >M & <=N , >N # let M <-.8 N <- 1.2 # In my real example I have many more of these cutoff-points # What I did i...
2012 Oct 02
2
add values in one column getting range from other column
Hi, My dataframe has two columns one with area and other with percent. How can i add the areas that are within a range of percentage?? My dataframe looks like Area Percent 456       0 3400      10 79          25 56           18 467         0 67          67 839        85 1120      0 3482      85 I want to add the area for values whose percent is <0, 0-25,...
2009 Mar 07
2
piecewise linear regression
Hi - I'd like to construct and plot the percents by year in a small data set (d) that has values between 1988 and 2007. I'd like to have a breakpoint (buy no discontinuity) at 1996. Is there a better way to do this than in the code below? > d year percent se 1 1988 30.6 0.32 2 1989 31.5 0.31 3 1990 30.9 0.30 4 1991...
2013 Jan 16
4
Get a percent variable based on group
Dear all, I'd like to get a percentage variable based on a group, but without creating a new data frame. For example: data(iris) iris$percent <-unlist(tapply(iris$Sepal.Length,iris$Species,function(x) x/sum(x, na.rm=TRUE))) This does not work, I should have only three standard values, respectively for setosa, versicolor, and vi...
2011 Apr 07
3
Windrose Percent Interval Frequencies Are Non Linear! Help!
Hi All - I have been using the windrose function found in the circular library to create great looking windroses.  But the dashed, circular percent interval lines that indicate the frequency at which each "pedal" occurs are not evenly spaced (the corresponding parameter is "cir.ind").  That is, the 5% interval closest to the heart of the windrose is wider than the 5-10 chuck, which inturn is wider than the 10-15% chunk. Do...
2007 Dec 11
2
nut-2.2.1-pre2
Shamelessly reusing the announcement Arnaud sent about three months ago for nut-2.2.1: "We're preparing to release 2.2.1-pre2, so if you have some fixes to backport on Testing, consider announcing it and doing asap. As always, compatibilities update and bugfixes only!" Regards, Arjen -- Eindhoven - The Netherlands Key fingerprint - 66 4E 03 2C 9D B5 CB 9B 7A FE 7E C1
2013 Jan 14
3
How to fit a linear model to data by minimizing the mean absolute percent error?
... #y is a linear function of x with some error. Add uniform error that is scaled to be larger as x values also become larger #error is proportional to x size, this should cause heterocedasticity. #I know there are many methods to deal with heterocedasticity, but in my specific case, I want to use percent regression to minimize the mean absolute  #percentual error as opposed to regular regression that deals with the square of the errors. #Question, how to fit a linear model to minimize this error on the data y ~ x above? #Please do not use model<-lm(y ~ x....) as this will minimize the square of...
2009 Nov 05
2
SMBD CPU climbs sky high when writing DPX files
Hello, I am experiencing a strange problem when writing (capturing) DPX video files to a Linux/Samba share. Basically, I'm seeing seeing a single smbd process go from 9 percent CPU utilization to 100 percent CPU utilization over the course of about 40 minutes. When smbd reaches 100 percent, the capture stops (drops frames). I have tested this with three different filesystem formats (XFS, ext3 and ext4) with similar -- although slightly different -- results. My test...
2020 May 03
0
Understanding VDO vs ZFS
...drian Enterprises <eperez at quadrianweb.com> wrote: >sorry corrections: >For this test I created a 40GB lvm volume group with /dev/sdb and >/dev/sdc >then a 40GB LV >then a 60GB VDO vol (for testing purposes) > >vdostats --verbose /dev/mapper/vdoas | grep -B6 'saving percent' >output from just created vdoas > >[root at localhost ~]# vdostats --verbose /dev/mapper/vdoas | grep -B6 >'saving >percent' >physical blocks : 10483712 > logical blocks : 15728640 > 1K-blocks...
2015 Aug 08
3
Percent bar on screen - for 2 seconds
Every once in awhile I see this horizontal percent bar flash up on the screen then disappear. What is that? CentOS 7.1, ? kde. -wes
2010 Apr 05
2
Rprintf not updating
Hello all, I am using Rprintf in a C for loop (from .Call) to print a progress indicator showing the current percent complete. The loop I am doing is an time intensive call to another function. I have noticed that Rprintf does not print to the R-window until the entire loop has been completed. When it reaches the end of the loop it suddenly prints 0 percent to 100 percent in a split second. For less intensive...
2005 Apr 11
1
glm family=binomial logistic sigmoid curve problem
I'm trying to plot an extrapolated logistic sigmoid curve using glm(..., family=binomial) as follows, but neither the fitted() points or the predict()ed curve are plotting correctly: > year <- c(2003+(6/12), 2004+(2/12), 2004+(10/12), 2005+(4/12)) > percent <- c(0.31, 0.43, 0.47, 0.50) > plot(year, percent, xlim=c(2003, 2007), ylim=c(0, 1)) > lm <- lm(percent ~ year) > abline(lm) > bm <- glm(percent ~ year, family=binomial) Warning message: non-integer #successes in a binomial glm! in: eval(expr, envir, enclos) > points(ye...