Displaying 20 results from an estimated 34 matches for "hc1".
Did you mean:
h21
2016 Jul 27
3
Lost trusted domain in samba-4.4.4
Here is my smb.conf:
[/usr/local/samba/var] # cat /etc/config/smb.conf
[global]
client schannel = false
server schannel = false
client ipc signing = false
client signing = false
server signing = false
winbind sealed pipes = false
require strong key = false
passdb backend = smbpasswd
workgroup = HC1
security = ADS
server string =
encrypt passwords = Yes
username level = 0
map to guest = Bad User
null passwords = yes
max log size = 102400
socket options = TCP_NODELAY SO_KEEPALIVE
os level = 20
preferred master = no
dns proxy = No
smb passwd file=/etc/config/smbpasswd
username map = /etc/config/...
2016 Jul 27
0
Lost trusted domain in samba-4.4.4
...onfig/smb.conf
> [global]
>
> client schannel = false
> server schannel = false
> client ipc signing = false
> client signing = false
> server signing = false
> winbind sealed pipes = false
> require strong key = false
>
> passdb backend = smbpasswd
> workgroup = HC1
> security = ADS
> server string =
> encrypt passwords = Yes
> username level = 0
> map to guest = Bad User
> null passwords = yes
> max log size = 102400
> socket options = TCP_NODELAY SO_KEEPALIVE
> os level = 20
> preferred master = no
> dns proxy = No
> smb p...
2007 Sep 17
1
side bars on dendrograms with latticeExtra
Dear all,
I am using the heatmap representations of latticeExtra package and I
would be interested to draw color side bars representing the groups of a
factor of interest. From my understanding of :
> help(dendrogramGrob)
...
The 'add' argument can be used for additional annotation at the
base of the dendrogram. It should be a list with one component
for each row,
2016 Aug 16
0
Question about trusted domain list in samba-4.4.x
Hi list,
This is my domain enviroment and all DC are windows 2008r2
http://i.imgur.com/8cNOtm2.jpeg
When I used samba-4.0.5, I join my box to domain "HC1" , I got trusted
domain "CHILD2" in "wbinfo -m".
[/share/Public] # wbinfo -m
BUILTIN
MYBOX
HC1
CHILD1
TREEROOT
HC2
CHILD2
Then I upgraded my box to samba-4.4.4, I lost CHILD2 in "wbinfo -m".
[/share/Public] # wbinfo -m
BUILTIN
MYBOX
HC1
CHILD1
TREEROOT
HC2
In...
2012 Jul 09
1
linearHypothesis and factors
...year is a factor with various year
levels. Individually, each year factor variable is not significant, but I
have a suspicion they are jointly significant. I can't figure out how to run
a linearHypothesis test with a factor, i.e.
linearHypothesis(reg, ??? year=0 ??? , vcov=vcovHC(reg, , "HC1"))
Would be very much appreciated.
Many thanks,
Alex
--
View this message in context: http://r.789695.n4.nabble.com/linearHypothesis-and-factors-tp4635814.html
Sent from the R help mailing list archive at Nabble.com.
[[alternative HTML version deleted]]
2016 Jul 27
2
Lost trusted domain in samba-4.4.4
Hi list,
This is my domain enviroment and all DC are windows 2008r2
http://i.imgur.com/8cNOtm2.jpeg
When I used samba-4.0.5, I join my box to domain "HC1" , I got trusted
domain "CHILD2" in "wbinfo -m".
[/share/Public] # wbinfo -m
BUILTIN
MYBOX
HC1
CHILD1
TREEROOT
HC2
CHILD2
Then I upgraded my box to samba-4.4.4, I lost CHILD2 in "wbinfo -m".
[/share/Public] # wbinfo -m
BUILTIN
MYBOX
HC1
CHILD1
TREEROOT
HC2
In...
2010 Feb 21
1
How to: Compare Two dendrograms (Hierarchical Clusterings) ?
Hello all,
I wish to compare two dendrograms (representing Hierarchical Clusterings).
My problems are several:
1) how do I manually create a dendrogram object ?
That is, how can I reconstruct it as an "hclust" object that creates such a
dendrogram, when all I have is the dendrogram image (but don't have the
underlaying distance matrix that produced it) ?
I see that there is a
2016 Jul 27
0
Lost trusted domain in samba-4.4.4
On 27/07/16 09:35, hy wu wrote:
> Hi list,
>
> This is my domain enviroment and all DC are windows 2008r2
>
> http://i.imgur.com/8cNOtm2.jpeg
>
> When I used samba-4.0.5, I join my box to domain "HC1" , I got trusted
> domain "CHILD2" in "wbinfo -m".
>
> [/share/Public] # wbinfo -m
> BUILTIN
> MYBOX
> HC1
> CHILD1
> TREEROOT
> HC2
> CHILD2
>
> Then I upgraded my box to samba-4.4.4, I lost CHILD2 in "wbinfo -m".
> [/share...
2003 May 06
1
S's plclust and R's hclust
Hello everyone,
Does anyone know how to implement the argument "unit" in R's plclust
function ? I used to use Splus where this argument exists but it has not
been implemented in R's plclust. The reason why I switched from Splus to
R is that Ward's method is not implemented for S's hclust whereas it is
implemented for R's hclust. What I would need is S's plclust
2011 Dec 14
0
hclust and ggplot2
...ns,1,.1)
all[2,]=rbinom(columns,1,.1)
all[1,]=rbinom(columns,1,.1)
all[6:9,]=rbinom(columns,1,.1)
all[10:19,]=rbinom(columns,1,.3)
all[20:29,]=rbinom(columns,1,.7)
#1 to 10 .5 11 to 89 .9 .1 90 columns
#calculate the distances for clustering
rand1=dist(all)
#cluster on those distances and plot
hc1=hclust(rand1,"average")
plot(hc1)
## now plot using ggplot and polar coordinates. Line starting
p<-ggplot(data=x) yields the error. This is the online code I found.
library(ape)
library(cluster)
library(ggplot2)
x <- as.phylo(hc1)
p <- ggplot(data=x)
p <- p + geom_se...
2012 Mar 12
2
Replicating Stata's xtreg clustered SEs in R
...ject.org/web/packages/plm/index.html),
I've replicated the coefficients. I sought to estimate
country-clustered SEs with vcovHC(), and tried a variety of options,
but couldn't exactly replicate the published (i.e., Stata 10's) SEs.
In R, vcovHC(x, method="arellano", type="HC1", cluster="group") came
closest to Stata's SEs (differing at the 3rd decimal place or so).
Does anyone happen to know what method cluster() for Stata's xtreg
uses to calculate clustered SEs for panel data, and/or how this could
be implemented equivalently in R? ?Any help wou...
2008 Jan 08
0
PwrGSD
...pending= ObrienFleming),
FutilityBoundary=LanDemets(alpha=0.1,spending=ObrienFleming),
RR.Futility = 0.82, sided="<",method="A",accru =7.73, accrat=9818.65,
tlook =tlook, tcut0 =t0, h0=h0, tcut1=t0, rhaz=rhaz,
tcutc0=t0, hc0=hc, tcutc1=t0, hc1=hc,
tcutd0B =c(0, 13), hd0B =c(0.04777, 0),
tcutd1B =0:6, hd1B =hd1B,
noncompliance =crossover, gradual =TRUE,
WtFun =c("FH", "SFH", "Ramp"),
ppar =c(0, 1, 0, 1, 10, 10))
## we will construct a variety of alternate hy...
2008 Jan 08
0
PwrGSD
...pending= ObrienFleming),
FutilityBoundary=LanDemets(alpha=0.1,spending=ObrienFleming),
RR.Futility = 0.82, sided="<",method="A",accru =7.73, accrat=9818.65,
tlook =tlook, tcut0 =t0, h0=h0, tcut1=t0, rhaz=rhaz,
tcutc0=t0, hc0=hc, tcutc1=t0, hc1=hc,
tcutd0B =c(0, 13), hd0B =c(0.04777, 0),
tcutd1B =0:6, hd1B =hd1B,
noncompliance =crossover, gradual =TRUE,
WtFun =c("FH", "SFH", "Ramp"),
ppar =c(0, 1, 0, 1, 10, 10))
## we will construct a variety of alternate hy...
2004 May 10
3
Colouring hclust() trees
I have a data set with 6 variables and 251 cases.
The people who supplied me with this data set believe that it falls
naturally into three groups, and have given me a rule for determining
group number from these 6 variables.
If I do
scaled.stuff <- scale(stuff, TRUE, c(...the design ranges...))
stuff.dist <- dist(scaled.stuff)
stuff.hc <- hclust(stuff.dist)
2006 Jan 05
2
Wald tests and Huberized variances (was: A comment about R:)
...e command or
> "cluster(cluster.variable)" for a cluster-robust error. In R, there are two
> functions, robcov and hccm. I had to run tests to figure out what the
> relationship is between them and between them and Stata (robcov w/o cluster
> gives hccm's hc0; hccm's hc1 is equivalent to Stata's 'robust' w/o cluster;
> etc.).
This is rather clearly document on the respective man pages. hccm()
provides HC covariance matrices without clustering, as does vcovHC() in
package sandwich. I plan to extend vcovHC() to also deal with clustered
data, but I did...
2019 Mar 04
0
Mail Server Guides
...instead of MD5 for the password (Just need to finish up
the roundcube password change script)
dovecotadm backup for the mail
and something to backup the mysql
Otherwise my testing has been good.
Of course adding stuff like DKIM, DANE, etc.? would be nice.
I am running my mailserver on an Odroid HC1.? Nice little system....
2017 Aug 03
0
Results of vcovCL (sandwich) and of cluster() in Stata
...es <- filter(cities, city != "Z?rich" & city != "Mainz" &
city != "Wittenberg")
# the model
m1 <- lm(prot1530 ~ press - 1, data = cities)
# the clustered standard errors
coeftest(m1, vcov. = vcovCL(m1, cluster=cities$territory))
I tried different types (HC1, HC2, etc), but always the value for the SE
is not the same as in the table.
Any ideas?
Many thanks in advance.
--
:: Igor Sosa Mayor :: joseleopoldo1792 at gmail.com ::
:: GnuPG: 0x1C1E2890 :: http://www.gnupg.org/ ::
:: jabberid: rogorido :: ::
2014 Jun 27
2
virt_blk BUG: sleeping function called from invalid context
...entry+0x37c/0x7b0
[<ffffffff8104df1b>] start_secondary+0x25b/0x300
=================================
[ INFO: inconsistent lock state ]
3.16.0-0.rc2.git2.1.fc21.x86_64 #1 Not tainted
---------------------------------
inconsistent {HARDIRQ-ON-W} -> {IN-HARDIRQ-W} usage.
swapper/1/0 [HC1[1]:SC0[0]:HE0:SE1] takes:
(kernfs_mutex){?.+.+.}, at: [<ffffffff812d76a0>] kernfs_notify+0x90/0x150
{HARDIRQ-ON-W} state was registered at:
[<ffffffff811004b2>] __lock_acquire+0x942/0x1ca0
[<ffffffff811020f4>] lock_acquire+0xa4/0x1d0
[<ffffffff8180cb35>] mutex_lo...
2014 Jun 27
2
virt_blk BUG: sleeping function called from invalid context
...entry+0x37c/0x7b0
[<ffffffff8104df1b>] start_secondary+0x25b/0x300
=================================
[ INFO: inconsistent lock state ]
3.16.0-0.rc2.git2.1.fc21.x86_64 #1 Not tainted
---------------------------------
inconsistent {HARDIRQ-ON-W} -> {IN-HARDIRQ-W} usage.
swapper/1/0 [HC1[1]:SC0[0]:HE0:SE1] takes:
(kernfs_mutex){?.+.+.}, at: [<ffffffff812d76a0>] kernfs_notify+0x90/0x150
{HARDIRQ-ON-W} state was registered at:
[<ffffffff811004b2>] __lock_acquire+0x942/0x1ca0
[<ffffffff811020f4>] lock_acquire+0xa4/0x1d0
[<ffffffff8180cb35>] mutex_lo...
2018 Feb 23
2
v4.16-rc2: virtio-block + ext4 lockdep splats / sleeping from invalid context
...)
Full splat:
[ 162.337073] ================================
[ 162.338055] WARNING: inconsistent lock state
[ 162.339017] 4.16.0-rc2 #1 Not tainted
[ 162.339797] --------------------------------
[ 162.340725] inconsistent {HARDIRQ-ON-W} -> {IN-HARDIRQ-R} usage.
[ 162.342030] swapper/0/0 [HC1[1]:SC0[0]:HE0:SE1] takes:
[ 162.343061] (&journal->j_state_lock){+?++}, at: [<000000003b9c3e4b>] jbd2_trans_will_send_data_barrier+0x44/0xc8
[ 162.353187] {HARDIRQ-ON-W} state was registered at:
[ 162.354433] lock_acquire+0x48/0x68
[ 162.358640] _raw_write_lock+0x3c/0x50
[ 16...