search for: mie

Displaying 20 results from an estimated 106 matches for "mie".

Did you mean: mic
2007 Jan 25
1
barplot x-axis problem
...ss and sex and lines should represent the amount of blood units given in age classes. I have now successfully made a barplot and used par(new=TRUE) to plot another empty graph at the top of the barplot. #tab-table: # ikar_new #sp 0-9 10-19 20-29 30-39 40-49 50-59 60-69 70-79 >80 # mies 227 93 79 92 195 451 560 577 132 # nainen 183 80 102 175 99 161 230 357 164 barplot(tab, beside=TRUE, col = c("black", "lightgrey"), legend = rownames(tab), ylim= c(0,800), font.main = 4, cex.n...
2023 Apr 10
2
[PATCH v2 1/2] virtio_ring: add a struce device forward declaration
The virtio_ring header file uses the struct device without a forward declaration. Signed-off-by: Shunsuke Mie <mie at igel.co.jp> --- include/linux/virtio_ring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h index 8b95b69ef694..77a9c2f52919 100644 --- a/include/linux/virtio_ring.h +++ b/include/linux/virtio_ring.h @@ -58,6 +58,7 @@ do {...
2023 Apr 10
2
[PATCH v2 2/2] tools/virtio: fix build caused by virtio_ring changes
On Mon, Apr 10, 2023 at 08:00:33AM -0400, Michael S. Tsirkin wrote: > On Mon, Apr 10, 2023 at 08:28:45PM +0900, Shunsuke Mie wrote: > > Fix the build dependency for virtio_test. The virtio_ring that is used from > > the test requires container_of_const(). Change to use container_of.h kernel > > header directly and adapt related codes. > > > > Signed-off-by: Shunsuke Mie <mie at igel.co.j...
2007 Jul 09
3
Strange document loss
...pens after a lot of queries (many K). I''ve tried to look into Ferret''s C code, everything looks like going well, the add *LOOKS LIKE* being done, so it''s probably deeper in the internals.. Does anybody had this problem too ? Is there any known solution ? :/ Cheers, J?r?mie -- J?r?mie -ahFeel- BORDIER http://www.unixaumonde.com -- Posted via http://www.ruby-forum.com/.
2023 Apr 17
1
[PATCH v3 RESEND 1/2] virtio_ring: add a struct device forward declaration
The virtio_ring header file uses the struct device without a forward declaration. Signed-off-by: Shunsuke Mie <mie at igel.co.jp> --- Changes from v2: https://lore.kernel.org/virtualization/20230410074929-mutt-send-email-mst at kernel.org/ - Fix a typo of commit title include/linux/virtio_ring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_...
2007 Aug 28
3
Forcing coefficients in lm object
...ing lm object but with new arbitrary coefficients. I modify 'fit$coef' (see example below) "by hand" but the actual model in 'fit' used for prediction does not seem to be altered (although fit$coef is!). Can anyone please help me do this properly? Thanks in advance, J?r?mie > dat <- data.frame(y=c(0,25,32,15), x=as.factor(c(1,1,2,2))) > fit <- lm(y ~ x, data=dat) > fit Call: lm(formula = y ~ x, data = dat) Coefficients: (Intercept) x2 12.5 11.0 > fit$coef[[2]] <- 100 > dat.new <- data.frame(x=as.factor(c(1,...
2018 Jan 10
2
R-hts
Hello, It's difficult to help without a sample of the format. Can you provide a short sample like 10 lines and a few columns.? Best regards, Jeremie On Wed, Jan 10, 2018 at 6:12 PM, John Kane via R-help <r-help at r-project.org> wrote: > Have a look at http://stackoverflow.com/questions/5963269/how-to-make- > a-great-r-reproducible-example > and > http://adv-r.had.co.nz/Reproducibility.html > > > > > On W...
2018 Jan 10
0
R-hts
...t you have (or a simulated version of same, hence the reading recommendation) using dput, and someone may suggest how to transform it. In most cases a simple tabular format (data frame) is sufficient. -- Sent from my phone. Please excuse my brevity. On January 10, 2018 12:20:47 PM PST, "J?r?mie Juste" <jeremiejuste at gmail.com> wrote: >Hello, > >It's difficult to help without a sample of the format. Can you provide >a >short sample like 10 lines and a few columns.? > >Best regards, >Jeremie > > >On Wed, Jan 10, 2018 at 6:12 PM, John Kane vi...
2014 Apr 01
3
Error0x00000006 with Point'n'Print Client Drivers
...FS-C2026MFP+ KX:KMUC61BI.DLL:KMF09310.MDX:KMUU61BI.DLL:KMGKEN41.CHM:KM Language Monitor:RAW:KMBASE2.XML,KMFS61BI.DLL,KMRF61BI.DLL,KMRC61BI.DLL,KM3D61BI.DLL,KM3M61BI.DLL,KMPE61BI.DLL,KMWM61BI.DLL,KMPF61BI.DLL,KMPO61BI.DLL,KMSP61BI.DLL,KMCO61BI.DLL,KMPC61BI.DLL,KMPLSW02.DLL,KMPLSWIP.DLL,KMPLID01.DLL,KMIEDIT.DLL,KCMV3D.INI,CONFIDENTIAL.MIE,NOCOPY.MIE,KMPRPVW.EXE,KMPOPUPMGR.EXE,PMCLIENT2.DLL,KMXL61BI.DLL,KM5E61BI.DLL,KM5C61BI.DLL,KMPS61BI.DLL,KMPD61BI.DLL,KMAGFA1.FDF,KMPRE2.FDF,KM324010.DAT,kmautoc07.INI,kmquery07.XML,KACT2.EXE' Then I connect the driver and the printer: > rpcclient localho...
2023 Apr 10
1
[PATCH] tools/virtio: fix build caused by virtio_ring changes
Fix the build dependency for virtio_test. virtio_ring requires container_of_const() and struce device. Signed-off-by: Shunsuke Mie <mie at igel.co.jp> --- tools/include/linux/container_of.h | 36 ++++++++++++++++++++++++++++++ tools/virtio/linux/compiler.h | 3 +++ tools/virtio/linux/kernel.h | 5 +---- tools/virtio/linux/module.h | 1 + 4 files changed, 41 insertions(+), 4 deletions(-) create mod...
2012 Sep 26
3
High memory needs
..., we have a ratio of ~7, ~3, ~2, respectively. It is very problematic for us because many jobs now cannot run properly, because they lack memory on most of our computing nodes. So we really cannot stand the situation... Do you see any reason for this? Do you have suggestions? Sincerely, J?r?mie
2017 Oct 23
3
Linear regression with tranformed dependant variable
...ansformation...?The results are great, but I don't know how to interprete the beta coefficients... Is it possible to do another transformation to get interpretable beta coefficients to express the variations in the original untransformed dependant variable ??Thank you very much for your help!No?mie? [[alternative HTML version deleted]]
2004 Aug 06
1
Q: Is it possible?
...erybody can hear the other speakers and vice versa. For broadcasting, the high quality signal from each remote speaker is send to the studio (just one direction). Here are pictures of the two layers, layer 1 is the icecast MP3-stream, layer 2 is the H323 RTP-stream: http://www-user.tu-chemnitz.de/~mie/layer_1.gif http://www-user.tu-chemnitz.de/~mie/layer_2.gif But I doubt that 2 programs (ices and the H323 software) can capture the microphone channel of one soundcard simultaniously. Maybe there are technologies out there to grant multiple access (I am sure there is), otherwise two soundcards an...
2016 Aug 22
2
Nested KVM issue
...% tdp_page_fault ?n joi, 18 aug. 2016 la 11:59, Laurentiu Soica <laurentiu at soica.ro> a scris: > I've tried with KSM disabled and nothing changed. > > I've upgraded KVM to qemu-kvm-ev. I'm waiting to see if there are any > improvements and report back. > > ?n mie., 17 aug. 2016 la 15:10, Boris Derzhavets <bderzhavets at hotmail.com> > a scris: > >> For myself KSM is unpredictable feature. The problem is Compute, just >> this node >> >> does "copy on write" , so only Compute. >> >> My concern exactly...
2016 Feb 06
2
Send Dovecot logs to rsyslog
Just tested, same result :( Thanks Nicolas 2016-02-06 16:44 GMT+01:00 Oscar del Rio <delrio at mie.utoronto.ca>: > On 05/02/2016 9:42 AM, Nicolas Fo wrote: > >> I set in dovecot.conf : syslog_facility = local5.info >> > > Try: > > syslog_facility = local5 > > Source: > http://wiki.dovecot.org/Logging#Syslog_Example >
2006 Oct 20
1
Big problem with 0.10.12 gem :O
> Here''s the dump... http://pastie.caboo.se/18686 ahFeel <= here''s the dumb :/ Cheers :) J?r?mie ''ahFeel'' BORDIER -- Posted via http://www.ruby-forum.com/.
2002 Nov 15
1
NT domains -vs- simple workgroups????
.../95, but NT only asks for domain name. At least that I can see. At home I'm using RedHat 6.0 samba server (version?), NT4;service pack 1, and Win 98. My "intranet" is running on Apache in the samba server. From the NT and Win 98 pc's I can access the intranet via Netscape and MIE. I can see the samba server in Network Neighborhood and I can open the path to the files. I can open the .html and .txt files from them also and make changes to them. I have not had to make any changes to the default smb.conf or the apache config files. The files are saved in /home/user/public_...
2018 Jan 10
0
R-hts
Hello, Have a look at the plm package https://cran.r-project.org/web/packages/plm/index.html It has a convenient way to structure your data into panel according to some id. Best regards, Jeremie On Wed, Jan 10, 2018 at 5:41 PM, deva d <devazresearch at gmail.com> wrote: > dear all, > > i need some help in structuring my data file for a hierarchical time series > analysis. > > can someone help please ? > > i have a 600 row database in the nature of a panel...
2002 Nov 11
0
new to samba, please advise...
...st a user account. I have installed RedHat Linux 6.0 (because of familiarity of the OS and using older pc) on a separate pc and I am the Administrator for it. Have created a small "intranet", no connection to the internet. I am able to see the web pages and documents with Netscape or MIE from the various Nt pcs. What I am unable to do is this: make changes to the documents and web pages on the Linux box from the Nt pcs. When in Network Neighborhood, I see my Linux pc (IP # only, don't know why I don't see computer name). When I try to open the connection, I'm asked...
2018 Jan 10
4
R-hts
dear all, i need some help in structuring my data file for a hierarchical time series analysis. can someone help please ? i have a 600 row database in the nature of a panel data, with 3 time series values of interest. the data also has 4 classificatory variables comprising a code for each entity in the panel, a value for time (year), and classification of type of entity and a further sub-group