search for: hss

Displaying 20 results from an estimated 29 matches for "hss".

Did you mean: has
2007 May 10
1
Barplot by two variables
Hi all I have a bit of a problem. I want to make a barplot of some data. My data is of a score that is separated by year and by a limit (above 3 and below 3 to calculate the score). Year Limit HSS 1999 ALT 0.675 1999 VFR 0.521 2000 ALT 0.264 2000 VFR 0.295 I would like to have a barplot with year on the x axis and HSS on the y axis and the two limits as two different colors to show the difference. Using (dataset$HSS, col=c("green","purple")) I get some of the plot but...
2005 Jun 13
1
Traffic shaping on WAN(serial) device
Hi, In our product i am using the High Speed Serial driver as the WAN interface. I''ve implemented the HSS as a serial driver and i am running PPP to connect to the internet. I have both Voice data + FTP data going thro the PPP session. Is it possible for me to use the Traffic shaper(wonder shaper) in my case/ Do i need to make the HSS driver to appear as a network device inorder to run the traffic...
2011 Oct 05
2
creating a loop for a function
...nually change each time for different lag. So i wan to write a loop for the lag 1 to 10 and return the statistics for each lag. Is there any method to do this ? With regards, Upananda -- You may delay, but time will not. Research Scholar alternative mail id: upani@iitkgp.ac.in Department of HSS, IIT KGP KGP [[alternative HTML version deleted]]
2017 Sep 20
1
Convert data into zoo object using Performance analytics package
...gards, >> > Upananda Pani >> > >> > >> > -- >> > >> > >> > You may delay, but time will not. >> > >> > >> > Research Scholar >> > alternative mail id: upani at iitkgp.ac.in >> > Department of HSS, IIT KGP >> > KGP >> > >> > [[alternative HTML version deleted]] >> > >> > ______________________________________________ >> > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >> > https://stat.ethz.ch/mailma...
2017 Sep 22
1
Convert data into zoo object using Performance analytics package
...; > >> > -- > > >> > > > >> > > > >> > You may delay, but time will not. > > >> > > > >> > > > >> > Research Scholar > > >> > alternative mail id: upani at iitkgp.ac.in Department of HSS, IIT KGP > > >> > KGP > > >> > > > >> > [[alternative HTML version deleted]] > > >> > > > >> > ______________________________________________ > > >> > R-help at r-project.org mailing list -- To UNSUBSC...
2017 Sep 20
0
Convert data into zoo object using Performance analytics package
...gt; >> > > >> > > >> > -- > >> > > >> > > >> > You may delay, but time will not. > >> > > >> > > >> > Research Scholar > >> > alternative mail id: upani at iitkgp.ac.in Department of HSS, IIT KGP > >> > KGP > >> > > >> > [[alternative HTML version deleted]] > >> > > >> > ______________________________________________ > >> > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > >&g...
2011 Sep 29
1
checking the outliers of the time series data set
Dear All, Can you please guide me how to check the outliers in the data set in R. It would be great if you can give some examples of methods. With regards, Upananda -- You may delay, but time will not. Research Scholar alternative mail id: upani@iitkgp.ac.in Department of HSS, IIT KGP KGP [[alternative HTML version deleted]]
2017 Sep 18
3
Convert data into zoo object using Performance analytics package
...class(sbux.z) head(sbux.z) > head(sbux.z) Data: numeric(0) I will be grateful if anybody would like to guide me where i am making the mistake. With best regards, Upananda Pani -- You may delay, but time will not. Research Scholar alternative mail id: upani at iitkgp.ac.in Department of HSS, IIT KGP KGP [[alternative HTML version deleted]]
2001 Apr 19
3
Error Mapping Clearcase Views/Vobs using Samba
Hi All, Users at our site are using SAMBA (Version 2.0.8 and 1.9.15p8) to map their Home Directories and their Clearcase Vobs/Views on their Windows 2000 desktops. Home directories are being mapped without any issues but while mapping their views/vobs we are getting the error stated below: Network path \\server name\share could not be found and The mapped network drive could not
2006 Feb 19
1
Importing data
Hi all, I'm a new R user trying to import some tab delimited data. It's not clear to me why the following code won't work on my Mac: > read.delim("asphodel:Users:will:Desktop:Math_282:hw2:hw2- data1.txt",header=TRUE) Error in file(file, "r") : unable to open connection In addition: Warning message: cannot open file
2011 Sep 28
0
cointegration test
...the same lag selection criteria, when i am using price series in levels to estimate the cointegration by johansen method. Looking forward for your help With sincere regards, Upananda -- You may delay, but time will not. Research Scholar alternative mail id: upani@iitkgp.ac.in Department of HSS, IIT KGP KGP [[alternative HTML version deleted]]
2011 Feb 26
3
tbx player and asymgrid.vbx
Hello, I've got wine 1.2 in ubuntu and try to run an english course for windows. It uses the tdk player and it runs ok, until i choose a lesson. When I choose a lesson, a window appears with title "Add Extension" It's a file open type dialog, and in the field "File name", says "ASYMGRID.VBX". I navigate to "windows\system32" in the "C:"
2017 Jul 01
0
How to replace match words whith colum name of data frame?
...rticl ", "grind liquid", "liquid formul", "nanoparticl", "size abras particl", "agent malic acid")) chemical_df <- data.frame(chemical=c("basic", "alkalin", "alkali", "acid", " ph ", "hss")) Here is my match code: library(magrittr) match_df <- NULL for (i in 1:length(chemical_df$chemical)) { match_df<-data.frame(category=concept_df[grep(chemical_df$chemical[i], concept_df$concept), ] ) %>% rbind(match_df) } But I don't want this result: concept...
2017 Jul 30
0
How to replace match words whith colum name of data frame?
Try the stringr package. This should work chemical=c("basic", "alkalin", "alkali", "acid", " ph ", "hss") chemical_match <- str_c(chemical, collapse = "|") chemical_match concept_df$match[str_detect(concept_df$concept, chemical_match)] <- "chemical" concept_df > concept_df concept match 1 butan acid chemical 2 nano diamond particl...
2017 Jul 01
0
How to replace match words whith colum name of data frame?
...;grind liquid", "liquid formul", "nanoparticl", "size abras particl", > "agent malic acid")) > > chemical_df <- data.frame(chemical=c("basic", "alkalin", "alkali", > "acid", " ph ", "hss")) > > Here is my match code: > > library(magrittr) > match_df <- NULL > for (i in 1:length(chemical_df$chemical)) { match_df<- > data.frame(category=concept_df[grep(chemical_df$chemical[i], > concept_df$concept), ] ) %>% > rbind(match_df) > } > &g...
2004 Sep 30
3
Retrieving objects from functions...
I've written a program that involves a loop that creates a matrix. I'd like to be able to manipulate that matrix on my R desktop, but after I run the function, that matrix does not appear when I type ls(). How can I make that matrix become an object that I can manipulate? Thanks!
2017 Feb 28
0
[PATCH 3/3] gpu: drm: drivers: Convert printk(KERN_<LEVEL> to pr_<level>
...(struct drm_device *dev, ((ti->vblank_hi << 8) | ti->vblank_lo); mode->clock = ti->pixel_clock * 10; #if 0 - printk(KERN_INFO "hdisplay is %d\n", mode->hdisplay); - printk(KERN_INFO "vdisplay is %d\n", mode->vdisplay); - printk(KERN_INFO "HSS is %d\n", mode->hsync_start); - printk(KERN_INFO "HSE is %d\n", mode->hsync_end); - printk(KERN_INFO "htotal is %d\n", mode->htotal); - printk(KERN_INFO "VSS is %d\n", mode->vsync_start); - printk(KERN_INFO "VSE is %d\n", mode->vsync_e...
2016 Sep 14
2
HP Envy EFI problem after BIOS update
I had to boot my HP Envy into Win8 for the first time in ages this morning. When I did that, it installed some updates including a BIOS update. Once this was all done, once again the GRUB boot menu was gone and it booted straight into Win8. Using the advanced boot manager options in Win8 I managed to get the EFI boot menu up and chose Ferdora 21. It was only after Fedora failed to boot that
2012 Jan 04
1
GPFS for mail-storage (Was: Re: Compressing existing maildirs)
Great information, thank you. Could you remark on GPFS services hosting mail storage over a WAN between two geographically separated data centers? ----- Reply message ----- From: "Jan-Frode Myklebust" <janfrode at tanso.net> To: "Stan Hoeppner" <stan at hardwarefreak.com> Cc: "Timo Sirainen" <tss at iki.fi>, <dovecot at dovecot.org> Subject:
2017 Feb 28
8
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
...((ti->vblank_hi << 8) | ti->vblank_lo); > mode->clock = ti->pixel_clock * 10; > #if 0 > - printk(KERN_INFO "hdisplay is %d\n", mode->hdisplay); > - printk(KERN_INFO "vdisplay is %d\n", mode->vdisplay); > - printk(KERN_INFO "HSS is %d\n", mode->hsync_start); > - printk(KERN_INFO "HSE is %d\n", mode->hsync_end); > - printk(KERN_INFO "htotal is %d\n", mode->htotal); > - printk(KERN_INFO "VSS is %d\n", mode->vsync_start); > - printk(KERN_INFO "VSE is %d\n&quo...