Displaying 20 results from an estimated 600 matches similar to: "Case weighting"
2018 Jan 03
3
HOW TO FILTER DATA
Hello,
I have a data of Patents from OECD in delimited text format with IPC being
one column, I want to filter the data by selecting only certain IPC in that
column and delete other rows which do not have my required IPCs. Please,
can anybody guide me doing it, also the IPC codes are string variables.
The data is somewhat like below, but its a huge dataset containing more
than 11 million rows
2007 Jul 17
0
Multiple imputation with plausible values already in the data
Hello,
this is not really an R-related question, but since the posting guide does not
forbid asking non-R questions (even encourages it to some degree), I though I'd
give it a try.
I am currently doing some secondary analyses of the PISA (http://pisa.oecd.org)
student data. I would like to treat missing values properly, that is using
multiple imputation (with the mix package). But I am not
2012 Jan 13
3
The Future of R | API to Public Databases
Dear R Users -
R is a wonderful software package. CRAN provides a variety of tools to
work on your data. But R is not apt to utilize all the public
databases in an efficient manner.
I observed the most tedious part with R is searching and downloading
the data from public databases and putting it into the right format. I
could not find a package on CRAN which offers exactly this fundamental
2006 Mar 30
1
Transparent socks proxy
Hello,
I'm running Wine 0.9.10 on a Fedora Core 5 at work.
I'd like to use the Socks5 proxy we've got with application run under Wine.
The application I'm using in Wine works fine using direct connection to the
internet but this application has no settings I can change to inform it of
the socks proxy.
So I'm using Sockscap32 2.38 from www.permeo.com . It works fine under
2018 Jan 03
0
HOW TO FILTER DATA
Try the code below:
df <- read_delim("C:/Users/lruan1/Desktop/1112.csv", "|", escape_double =
FALSE, trim_ws = TRUE)
df_new <- subset(df,df$IPC == 'H04M001/02'| df$IPC == 'C07K016/26' )
You can add more condition with "|" in the subset function. Good luck!
On Wed, Jan 3, 2018 at 2:53 PM, Saptorshee Kanto Chakraborty <
chkstr at
2002 May 26
3
Read a Time Serie CSV
Hi,
I want to read some Times Series of GDP from OECD-Countrys.
First I call:
> oecd96<-ts(read.csv("oecd96.csv",header=T,sep=";"),start=1950,freq=1)
> summary(oecd96)
gdpcausb gdpcautb gdpcbelb gdpccanb
Min. : 8567 Min. : 4533 Min. : 6616 Min. : 8966
1st Qu.:10771 1st Qu.: 8717 1st Qu.: 9440 1st Qu.:11694
Median
2009 Sep 20
3
plotting least-squares regression against x-axis
Hi,
I want to plot the residuals of a least-squares regression.
plot(lm(y~x), which=1)
does this, but it plots the y-axis of my data on the x-axis of the
residuals plot. That is, it plots the residual for each y-value in the
data. Can I instead use the x-axis of my data as the x-axis of the
residuals plot, showing the residual for a given x?
Thanks!
Jason Priem
University of North
2010 Feb 25
2
error using pvcm() on unbalanced panel data
Dear all
I am trying to fit Variable Coefficients Models on Unbalanced Panel
Data. I managed to fit such models on balanced panel data (the example
from the "plm" vignette), but I failed to do so on my real, unbalanced
panel data.
I can reproduce the error on a modified example from the vignette:
> require(plm)
> data("Hedonic")
> Hed <- pvcm(mv ~ crim + zn + indus
2008 Jul 02
14
is it possible to add a mirror device later?
Ciao,
the rot filesystem of my thumper is a ZFS with a single disk:
bash-3.2# zpool status rpool
pool: rpool
state: ONLINE
scrub: none requested
config:
NAME STATE READ WRITE CKSUM
rpool ONLINE 0 0 0
c5t0d0s0 ONLINE 0 0 0
spares
c0t7d0 AVAIL
c1t6d0 AVAIL
c1t7d0
2007 Mar 24
2
Two Problems while trying to aggregate a dataframe
Hello!
Given is an Excel-Sheet with actually 11,000 rows and 9 columns. I want
to work with the data in R. The contents are similar to my following
example.
I have a list with ID-number, personal name and two kinds of
loan-values. I want to aggregate the list, that for each person only one
row remains and where the loan-values are added.
First I tried some commands with tapply but had no
2009 Nov 10
1
Calculating the percentage of explained deviance in lmer
Dear all,
I am trying to calculate some measure of the amount of variability in the response variable that is explained by a model fitted in lmer
m1<-lmer(response-var ~ Condition+(1|Site/Area/Transect),family="binomial") .
I've seen from the literature that the precentage of explained deviance is a common measure. How can I calculate it?
Thanks a lot for your help, I hope this
2009 Nov 10
1
phase determination
Hi,
I'm trying to determine the phase of irregularly sampled data. Is there any
particular reason why both spec.pgram and spec.ls return phase<-NULL for
vectors?
Thank you.
Lisandro
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxx
Lisandro Benedetti-Cecchi
Associate Professor in Ecology
Department of Biology - University of Pisa
Via
2019 Jan 11
3
upgrade to 4.8.3 authentication not work without specifying domain
If the clients login locally and not in a domain.
Then tell you users to use .\loginname
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: Alberto Maria Fiaschi [mailto:alberto.fiaschi at estar.toscana.it]
> Verzonden: vrijdag 11 januari 2019 10:16
> Aan: L.P.H. van Belle
> CC: samba at lists.samba.org
> Onderwerp: Re: [Samba] upgrade to 4.8.3 authentication not
2006 Sep 12
2
coerce matrix to number
Dear List,
how can I coerce a matrix like this
[,1] [,2] [,3] [,4] [,5] [,6]
[1,] "0" "1" "1" "0" "0" "0"
[2,] "1" "0" "1" "0" "0" "0"
[3,] "1" "1" "0" "0" "0" "0"
[4,] "0" "0"
2019 Jan 11
6
upgrade to 4.8.3 authentication not work without specifying domain
I updated a centos 7 without changing the samba configuration. Before
authentication worked even without having to specify the domain to the
logon. After the update, on the other hand, it is mandatory to specify
the domain.
user password: not work.
domain \ user password work.
I have 5000 windows (xp / 7/10) clients not in domain. Client workgroups
are varied. Users are not expert at all and
2001 Aug 07
3
Troubles with Farpoint Spread controls
Hi all.
The environment we are working on is a Red Hat Linux 6.2, with XFree 4.0
and KDE 2.1.
The wine has been compiled using egcs-1.1.2. Wine itself is latest
snapshot (20010731).
The application we're trying to run crashes when tries to display a
dialog box using Spread controls (from Farpoint). The crash occurs
during a WM_PAINT.
By exploring the builind of the window, the control
2013 Feb 12
2
ix? / Intel(R) PRO/10GbE
I finally got a 10G card that is recognized by FreeBSD (9.1-stable):
...
ix0: <Intel(R) PRO/10GbE PCI-Express Network Driver, Version - 2.4.8> port
0xecc0-0xecdf mem 0xd9e80000-0xd9efffff,0xd9ff8000-0xd9ffbfff irq 40 at device
0.0 on pci4
ix0: Using MSIX interrupts with 9 vectors
ix0: RX Descriptors exceed system mbuf max, using default instead!
ix0: Ethernet address: 90:e2:ba:29:c0:54
2009 Jul 07
3
troubles with broken clients (iPhone) - again
The PC (Outlook) is accessing the mailbox via POP3, the iPhone is using
IMAP; please consider we are talking about a user's home setup, so it's
pretty difficult to have a more detailed report on his part (Outlook
version, iPhone OS version, xDSL router type and configuration, etc.). The
mail server 'dovecot -n' output is attached.
The symptoms: when the Mail application is
2019 Jan 11
2
upgrade to 4.8.3 authentication not work without specifying domain
How about setting:
map untrusted to domain = yes
The default changed here. But it would still help if we could see the
smb.conf as the big difference with 4.8 is that winbind needs to run
now. This might also do something like this.
Regards
Christian
Am 11.01.19 um 10:46 schrieb L.P.H. van Belle via samba:
> I gave you the most simple option.
>
> And the difference is.
>
2012 Jan 05
9
[PATCHv2 0 of 2] Deal with IOMMU faults in softirq context.
Hello everyone,
Reposting with after having applied the (minor) fixes suggested by Wei
and Jan.
Allen, if you can tell us what you think about this, or suggest someone
else to ask some feedback to, if you''re no longer involved with VT-d,
that would be great! :-)
--
As already discussed here [1], dealing with IOMMU faults in interrupt
context may cause nasty things to happen, up to