Displaying 20 results from an estimated 110 matches similar to: "identifying cells in data frames with the same value"
2017 Oct 19
1
looping using 'diverse' package measures
Hi everyone,
I'm new at R (although I'm a Stata user for some time and somehow
proficient in it) and I'm trying to use the 'diverse' R package to compute
a few diversity measures on a sample of firms for a period of about 10
years. I was wondering if you can give me some hints on how to best proceed
on using the 'diverse' package.
My sample has the following setup.
2017 Oct 19
1
looping using 'diverse' package measures
Hi everyone,
I'm new at R (although I'm a Stata user for some time and somehow
proficient in it) and I'm trying to use the 'diverse' R package to compute
a few diversity measures on a sample of firms for a period of about 10
years. I was wondering if you can give me some hints on how to best proceed
on using the 'diverse' package.
My sample has the following setup.
2003 Jun 16
2
[Bug 596] "ProxyCommand none" doesn't work
http://bugzilla.mindrot.org/show_bug.cgi?id=596
Summary: "ProxyCommand none" doesn't work
Product: Portable OpenSSH
Version: -current
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo: openssh-bugs at mindrot.org
ReportedBy:
2015 May 25
0
foreach hangs when using doMPI on Windows with Microsoft MPI
??I installed Microsoft MPI.
Then installed the foreach and Rmpi packages.
Then built doMPI from source.
mpi.remote.exec works.
foreach hangs with the main process and all worker processes idle.
I launch my script with mpiexec:
"C:\Program Files\Microsoft MPI\Bin\mpiexec" -n 3 "C:\Program Files\R\R-3.2.0\bin\x64\Rterm.exe" --no-save -q -f "MPI Test.r"
The
2011 Sep 24
1
help
Mathew Brown
Institute of Bioclimatology
University of G?ttingen
B?sgenweg 2
37077 G?ttingen, Germany
t: +49 551 39 9359
mathew.brown at forst.uni-goettingen.de
On 9/24/2011 6:00 PM, r-help-request at r-project.org wrote:
> Send R-help mailing list submissions to
> r-help at r-project.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>
2005 Jun 06
1
Interleave cells with IP over ATM?
Anyone know if it''s possible to interleave two IP packets when using
PPPoA and VC based lines? Can it be done with any PPPoE implementations?
The goal is to reduce the delay when you have a high priority packet
waiting, but a lower priority (large) packet already started going out
ahead of this packet. I don''t want the overhead of much smaller MTU,
which is the other way
2010 Oct 05
0
10 Points How Cells Improves your Rails Architecture
What steps does it take to improve your architecture with Cells? This
article [1] discusses the best practices from keeping views dumb, via
slim controllers, how to avoid messy helpers, through to hiding your
caching strategy and component-oriented teams.
[1] http://nicksda.apotomo.de/2010/10/10-points-how-cells-improves-your-rails-architecture/
--
You received this message because you are
2007 Nov 29
0
empty cells in ftable
hello
when I enter:
ftable(xtabs(cnt~jeo+slp+pcurv+asp+hey),data=dt)
it gives a frequncy table. But some cells are empty.
like this:
19 2 72 0
3 68 0
4 99 0
5 110 0
6 97 0
7 74 0
8 46 0
2018 Jun 21
0
[PATCH v2 1/5] dt-bindings: virtio: Specify #iommu-cells value for a virtio-iommu
A virtio-mmio node may represent a virtio-iommu device. This is discovered
by the virtio driver at probe time, but the DMA topology isn't
discoverable and must be described by firmware. For DT the standard IOMMU
description is used, as specified in bindings/iommu/iommu.txt and
bindings/pci/pci-iommu.txt. Like many other IOMMUs, virtio-iommu
distinguishes masters by their endpoint IDs, which
2018 Jun 26
0
[PATCH v2 1/5] dt-bindings: virtio: Specify #iommu-cells value for a virtio-iommu
On 25/06/18 20:27, Rob Herring wrote:
> On Thu, Jun 21, 2018 at 08:06:51PM +0100, Jean-Philippe Brucker wrote:
>> A virtio-mmio node may represent a virtio-iommu device. This is discovered
>> by the virtio driver at probe time, but the DMA topology isn't
>> discoverable and must be described by firmware. For DT the standard IOMMU
>> description is used, as specified
2020 Jul 01
2
no/empty NUMA cells on domain XML
Hi ,
I'm looking for a possibility to simulate a VM (to be used as a host)
reporting no or empty NUMA <cells> in 'virsh capabilities'. 'virsh
capabilities' usually reports single NUMA in the VMs,
like
<numa>
<cell id='0' cpus='0-63' memory='16777216' unit='KiB'/>
</numa>
I appreciate if someone could advise
Thank you
2020 Jul 01
0
Re: no/empty NUMA cells on domain XML
On Wed, Jul 01, 2020 at 12:08:35PM +0300, Polina Agranat wrote:
> Hi ,
>
> I'm looking for a possibility to simulate a VM (to be used as a host)
> reporting no or empty NUMA <cells> in 'virsh capabilities'. 'virsh
> capabilities' usually reports single NUMA in the VMs,
> like
> <numa>
> <cell id='0' cpus='0-63'
2002 Jul 11
0
lattice and crosstabs with empty cells
Suppose you have a dataframe with two factors, but not all the factor
levels appear together. For instance:
stuff<- structure(list(fac1 = structure(c(2, 1, 2, 2), .Label = c("down",
"up"), class = "factor"), fac2 = structure(c(1, 2, 1, 2), .Label = c("left",
"right"), class = "factor"), x = c(1, 1, 2, 2), y = c(1, 2, 2,
1)),
2005 Jun 08
1
RODBC question: problem importing series with blank cells
Hello,
I have an excel file that I load through RODBC. Some of my columns are
blank. They are equity time series and the stocks did not exist at the
earlier dates. My problem is that the whole column becomes <NA> even though
there are numbers at later dates.
Here's my excel file
http://www.tradebit.com/download.php/35699
<http://www.tradebit.com/download.php/35699>
And
2006 Mar 22
1
calculate difference of consecutive cells in vector
Hi
in dataframe I want to subtract the "next" value in the list from the former
one to get this:
name var1 output
a 9 506
b 515 512
c 1027 453
so I subtract: table$var1[2]-table$var1[1] and write it into table$output[1]
etc..
I did this with:
for (i in 1:(length(table$var1)){
table$output[i] <- table$var1[i+1]-table$var1[i] }
it works
2006 Sep 27
1
matrix with additional upper, botton, left and right cells
Dear R Gurus,
I have a matrix dim(1000x1000) and I need create a second matrix with dim(1002x1002) and insert my first matrix at position col=2,line=2. Please, see an example below:
0050055050
5550000000
5000505005
5005000500
0055550555
and I need
333333333333
300500550503
355500000003
350005050053
350050005003
300555505553
333333333333
Thanks a
2008 Jun 24
2
How to solve empty cells in the contingency table?
Hi,Dear all R experts,
I am trying to do the 2-way contingency table analysis by fitting the loglinear models. However, I found my table has several empty cells which are theoretically missing values.I have no idea of how to solve them coz we cannot compute the simulated p-value with zero marginals.Does someone have some suggestions? Please help me out, thanks a lot!
Cheers,
Yan
2010 Jun 17
1
updating cells
Hello all,I have a table with about 18000 rows, I need to UPDATE the strings
in the "name.x" column in each row by the strings from "name.y" given if
"name.x" is NA or " ". How can I do it?
Also I want to update values in other columns, but I think that will be the
same job.
Daniel
--
Daniel Marcelino
http://bit.ly/pol4vc
[[alternative HTML version
2011 Jun 14
0
Analyzing three-way contingency tables with many zero cells
Hi all,
I am trying to analyze the following data. The first three columns are
categorical variables (colors of three traits for a peripatus species)
and the last column the count of individuals in each three-way
classification. I wish to test if the three traits vary independently or
if they are correlated across individuals, i.e. - this is a basic three
way contingency table question.
2011 Jun 24
0
replacing empty cells, and Date question
Hello, I have a data set like one below.
First,
I'd like to replace the empty cells with NA, and then the one immediately
above.
I could replace NAs with the immediate one, but don't know for the empty
cells.
index <- which(is.na(data1$year))
while (any(index)) {
dummy$data1[index] <- dummy$data1[index - 1]
index <- which(is.na(data1$year))
}
Second,
The id