Displaying 20 results from an estimated 154 matches for "frm".
Did you mean:
from
2008 Feb 26
2
Subsetting within xyplot()
...0.4)
x = c(4.1000, 4.9600, 1.2000, 3.9000, 3.1875, 1.9000, 1.8625,
0.7650, 1.5750, 2.4700, 1.6250, 1.5500, 2.3125, 1.3125, 1.0600,
-0.5500, 1.1000, 0.0200, -0.0375, 3.4600, 2.5250, 2.0950, 0.8000,
1.6050, -0.4150, -0.7300, 1.1550, 1.4850, 2.2000, 2.2500, 0.6000,
2.1000)
junk.frm = data.frame(x, y, z = rep(c("D", "P"), 16))
xyplot(y ~ x , data = junk.frm[junk.frm$z =="D",], type = c("g", "p",
"smooth"), pch = 20)
xyplot(y ~ x , data = junk.frm[junk.frm$z =="D",], type = c("g", "p",
&...
2008 Oct 27
0
Displaying number of Y/N affected by tree in rule form RE: R question/request on rules from rpart
...d version as well.
This is a great little function. Thanks for developing it and
suggesting how to make the enhancement.
Regards,
Dhruv
listrules<-function(model)
{
if (!inherits(model, "rpart")) stop("Not a legitimate rpart tree")
#
# Get some information.
#
frm <- model$frame
names <- row.names(frm)
ylevels <- attr(model, "ylevels")
ds.size <- model$frame[1,]$n
#
# Print each leaf node as a rule.
#
for (i in 1:nrow(frm))
{
if (frm[i,1] == "<leaf>")
{
# The following [,5] is hardwire...
2006 Jun 14
3
appending
...here an easier way to
collect the measurements via appendinng the 6 measurements each time to
the current set? I couldn't find anything in Intro to R on appending.
cheers,
Dave
ps - please respond directly to afshar at miami.edu
creatine.function.new = function(delta.0.Y.0, gamma, comp.LIS.frm,
comp.CAND.frm) { ## function to calcuate the delta.i, i.e. the percent
## leftover ## gamma = rate of Cr going into bucket, e.g., mg/hr ##
delta.0.Y.0 = product of delta.0 and Y.0 at baseline ##
Y.1 = delta.0.Y.0 + gamma
delta = numeric(6)
delta.patient = numeric(24)
delta.patient.comb = numeric(1...
2012 Mar 30
1
avoiding expression evaluation when calling a function
...rsqrd[i]<-r2
legend("bottomright", legend=signif(r2), col="black")
abline(mod)
rsqrd<<-rsqrd
}
I'd rather not have to go into the function and re-type each vector and
dataframe as I apply it to different vectors. My idea is something like:
plotter<-function(i,frm,obj,x,y){
temp.i<-frm[frm$obj <=(i*.10),]
with(temp.i, plot(x, y, main=(i*.10),))
mod<-lm(y~x-1,data=temp.i)
r2<-summary(mod)$adj.r.squared
rsqrd[i]<-r2
legend("bottomright", legend=signif(r2), col="black")
abline(mod)
rsqrd<<-rsqrd
}
However, it seems...
2006 Jun 08
1
BN8S0 problem - Extension can never match, so disconnecting
...ed with all lines in TE and P2P mode, and it is
connected with the special cable with an ISDN connection.
i've turned on debugging to level 4, this is the output from the
asterisk cli when i receive a call:
P[ 5] MGMT: Short status dinfo 1000001
P[ 5] MGMT: SSTATUS: L1_ACTIVATED
P[ 5] handle_frm: frm->addr:42000503 frm->prim:3f082
P[ 5] handle_frm: frm->addr:42000503 frm->prim:30582
P[ 5] set_channel: bc->channel:0 channel:1
P[ 5] I IND :SETUP oad:4656708 dad:465670127
P[ 5] --> mode:TE cause:16 ocause:16 rad: cad:
P[ 5] --> facility:FAC_NONE out_facility:FAC_NONE
P[...
2007 Jan 24
1
Query Failed because: Incorrect information in file: './asterisk/sip.frm'
...onfig_mysql.c: MySQL RealTime: Query:
SELECT * FROM extensions WHERE exten = 'h' AND context = 'interne
' AND priority = '1'
[Jan 24 10:32:40] DEBUG[31070] res_config_mysql.c: MySQL RealTime: Query
Failed because: Incorrect information in file: './asterisk/extensi
ons.frm'
[Jan 24 10:32:40] DEBUG[31070] res_config_mysql.c: MySQL RealTime:
Everything is fine.
[Jan 24 10:32:40] DEBUG[31070] res_config_mysql.c: MySQL RealTime: Retrieve
SQL: SELECT * FROM extensions WHERE exten LIKE '\\_%' AND conte
xt = 'interne' AND priority = '1' ORDER...
2014 Feb 13
2
MySQL Can't create file '/tmp/#sql2e0_98_0.frm' (errno: 9) problem
...not create
temporary files in /tmp. It is same for ANY database!
SELinux is disabled.
I logged to mysql as root and error is same.
Command used is:
CREATE TEMPORARY TABLE IF NOT EXISTS plugin_temp_table LIKE bak_menu;
Error is:
ERROR 1004 (HY000): Can't create file '/tmp/#sql21f8_f3_0.frm' (errno: 9)
What could be the problem, any idea how to proceed?
I do not think I edited any MySQL setting.
--
Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe
StarOS, Mikrotik and CentOS/RHEL/Linux consultant
2009 Jun 14
6
Access to Server frm authorized range of IPs only
Guys,
i know i saw this somewhere but i cant seem to locate that info now...
Scenario:
...............
I have a simple two interface firewall. The firewall machine also provides some services to the LAN and to the NET.
What i would like to do is allow only a particular range of IPs frm the internet to access those services.
What do i need to do with my ''rules'' file. Ideally i should be able to add ip , remove ip as required.
Can i make a file called ''Authorized_IP.txt'' and use that?
Thanx in advance.
----------------------------...
2008 Feb 28
2
Replacing plot symbols w/ subject IDs in xyplot()
All,
How does one replace plot symbols with say subject IDs when using xyplot? Or
superimpose them next to plot symbols? I searched the archives under
various key words but haven't had much. Any suggestions or links much
appreciated. Sample code below.
David
junk.frm = data.frame(ID = rep(1:16, each = 2), x, y, z = rep(c("D", "P"),
16))
y = c( 0.4, 0.6, -0.1, 0.3, 0.3, -0.2, 0.7, 0.7, 0.2, 0.0, 0.9,
-0.1, 0.6, -1.1, 0.8, -1.0, 0.4, 0.1, 0.7, -0.2, -0.1, -0.1, 2.2,
0.7, 1.1, 0.2, -0.2, -0.9, 0.4, 0.1, -0.3, -0.4)
x = c(4.100...
2006 Jun 06
3
FRM-91109 running oracle forms 6i in Wine
Has anyone manage to run Oracle Forms 6i forms builder or forms runtime
on Wine ?
I have seen a page with it running but there was not instructions on
how it got it
working.
Thanks
CK
2010 Jan 28
1
rails files are missing
I''ve built the slackware packages of rails.
rails path is: /frm/ruby/1.8.6/lib/ruby/site_ruby/1.8
RUBYLIB : /frm/ruby/1.8.6/lib/ruby/site_ruby/1.8:/frm/ruby/1.8.6/lib/
ruby/site_ruby/1.8/i686-linux/
I could created the rails application, but files are missing.
Config
- boot.rb, database.yml, environment.rb and routes.rb
Public
- 404.html,500.html,dis...
2010 Dec 29
6
icon for an R package
I'm looking for an icon to represent an R package. Perhaps something like
http://cdn2.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/package.png
but with the R logo rather than KDE.
--
Michael Friendly Email: friendly AT yorku DOT ca
Professor, Psychology Dept.
York University Voice: 416 736-5115 x66249 Fax: 416 736-5814
4700 Keele Street Web:
2004 Apr 21
2
Resizing a ListCtrl
...@fileList.set_column_width(0, LIST_AUTOSIZE_USEHEADER)
@fileList.set_column_width(1, LIST_AUTOSIZE_USEHEADER)
@fileList.set_column_width(2, LIST_AUTOSIZE_USEHEADER)
end #}}}
end
class TestApp < App #{{{
def on_init
@frm = MainFrame.new
set_top_window(@frm)
@frm.centre(BOTH)
@frm.show(true)
end
end #}}}
TestApp.new.main_loop
2010 Jun 02
2
pdf function, resize xyplot plot automatically
...via the pdf function, I would like to be
able to automatically expand the graphics device to achieve the same result
as when one does this manually (e.g., clicking the green expand button on
the upper left of the graph on Mac OS). Consider simple example below:
library("lattice")
foo.frm = data.frame(Subject = rep(c(1:4), each = 9), Y = rnorm(36), Time =
rep(c( 0, 15, 30, 45, 60, 90, 150, 210, 270), 4))
xyplot(Y ~ Time | as.factor(Subject), data = foo.frm, scale = list(x =
list(at = c(0, 15, 30, 45, 60, 90, 150, 210, 270))))
The tick marks are very close but this is resolved by ex...
2008 Oct 24
1
Repetitive correlation test
...h loop) on different combinations of variables of a data set.
Code:
x=read.table("sample.txt",header=T,sep="\t")
out="corout.txt"
sink(out)
nm = names(x)
print(nm)
nvr=3
# nvr=Total no. of variables in the input data file
for (i in 1:(nvr-1))
{
for(j in (i+1):nvr)
{
frm= as.formula(paste(nm[i+1],",",nm[j+1],sep="")) ($$)
crl=cor.test(frm,alternative="two.sided",method="pearson")
smr=summary(crl)
print(smr)
}
}
sink()
Sample Data:
S No V1 V2 V3
1 15 10 4
2 6 4 7
3 10 5 2
4 8 6 6
But the code does not work; ther...
2020 Sep 28
0
[RFC PATCH 15/19] tools/vhost-user-rpmb: implement VIRTIO_RPMB_REQ_DATA_WRITE
...of code.
>> */
>>
>> +static const int rpmb_frame_dlen = (sizeof(struct virtio_rpmb_frame) -
>> + offsetof(struct virtio_rpmb_frame, data));
>> +
>> static void vrpmb_update_mac_in_frame(VuRpmb *r, struct virtio_rpmb_frame *frm)
>> {
>> hmac_sha256_ctx ctx;
>> - static const int dlen = (sizeof(struct virtio_rpmb_frame) -
>> - offsetof(struct virtio_rpmb_frame, data));
>>
>> hmac_sha256_init(&ctx, r->key, RPMB_KEY_MAC_SIZE);
>> -...
2007 Dec 30
2
refering to variable names in lm where the variable name is in another variable
I am trying to refer to a variable name in a lm regression where the variable name is in another variable, but it does seem to work. Here is an example:
y<-rnorm(10)
dat<-data.frame(x1=rnorm(10),x2=rnorm(10),x3=rnorm(10))
nam<-c('x1','x2','x3')
library(gtools)
com<-combinations(3,2,1:3)
mod<-lm(y~nam[com[1,1]],data=dat)
#error in model frame....:variable
2006 Mar 15
4
misdn problem
I am trying to use misdn insted of zaphfc to drive two billion isdn cards
zaphfc is ok, but the problem with cdr and the fact tha you always have to
wait the bristuffed version of asterisk took me to
try another way.
so I downloaded the misdn installation script from beronet for the last
version ( I am using asterisk stable 1.2, so now is 1.2.5)
wget
2008 Jul 14
0
nlme, lme( ) convergence and selection of effects
...M 52
Undergraduate PMDB ...
=>Questions:
1) I''ve found that the random effects of the ''state'' level have a very
low standard deviation.
>depfed.lme3<- lme(Votes~Sex, data=depfed.frm, random=~1|State/Party)
>summary (depfed.lme3)
(...)Random effects:
Formula: ~1 | State
(Intercept)
StdDev: 0.0001089504
This suggests that there is no significant advantage on using ''state'' alone
as a grouping factor, I suppose. On the other hand, there is c...
2010 Jun 10
2
ISDN -> SIP
...2345, the SIP-call is going out, but after a
second the call is stopped.
What is wrong, with my configuration?
Kernel show
Jun 10 20:48:58 wolf kernel: hdlc_down unknown prim(280)
Jun 10 20:49:04 wolf kernel: MDL_ERROR|REQ (tei_l2)
Asterisk shows:
P[ 1] MGMT: SSTATUS: L1_ACTIVATED
P[ 1] handle_frm: frm->addr:42000103 frm->prim:3f082
P[ 1] channel with stid:0 not in use!
P[ 1] handle_frm: frm->addr:42000103 frm->prim:30582
P[ 1] set_channel: bc->channel:0 channel:1
P[ 1] I IND :NEW_CHANNEL oad:xxx dad:12345 pid:2 state:none
P[ 1] --> channel:1 mode:TE cause:16 ocause:1...