search for: swe

Displaying 20 results from an estimated 48 matches for "swe".

Did you mean: see
2016 Apr 22
0
clock24.plot
Hi Ogbos, Here is your sample data plotted in roughly the same way as the image. You can get the hours to start at the bottom, but it will require more code. swe$hour<-as.numeric(sapply(strsplit(swe$time,":"),"[",1)) swe$FD<-sample(1:2,nrow(swe),TRUE) library(plotrix) clock24.plot(swe$count,swe$hour,rp.type="s",radial.lim=c(3000,4010), show.grid.labels=0,point.col=swe$FD,mar=c(2,2,6,2)) legend(0,1600,c("FD1",&qu...
2016 Apr 21
2
clock24.plot/radial plot
...now do a 'daylight' plot oldpar<-clock24.plot(testlen[7:19],testpos[7:19], main="Test Clock24 daytime (symbols)", point.col="blue",rp.type="s",lwd=3) # reset everything par(oldpar) I tried to play with the script to work with my data. I read my data: swe<-scan("onedaydata",list(dates="",time="",count="")) dates<-swe$dates times<-swe$time count<-swe$count. I tried to replace testlen<-rnorm(24)*2+5 with testlen<-count and oldpar<-clock24.plot(testlen[7:19],testpos[7:19], with oldpar<-clo...
2014 Jan 31
2
[Bug 10409] New: issue with "Number of deleted files"
...Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: irina.cureraru at alcatel-lucent.com QAContact: rsync-qa at samba.org Hello, I'm trying to rsync files between two servers(rsync is installed on both servers) with the command /opt/swe/tools/ext/rsync-3.1.0/i386-solaris2.10/bin/rsync --rsync-path=/opt/alct/bin/rsync -e "ssh -l ****" --delete --delete-after --stats -uvazhiH /opt/swe/install/tools/ 1.0.0.0:/opt/swe/install/tools_freeware/ Password: With the following output: building file list ... done .d..t...... ./...
2003 Jan 09
2
AW: How do I configure 2 static net2net VPNs ov er one interface ipsec0?
Hi, Problem: I want 2 vpn tunnels for 2 subnets over one interface ipsec0. Documentation only describes config for 1 vpn or road warriors. I defined 2 vpn zones ''fre'' and ''swe''. #ZONE DISPLAY COMMENTS net Net Internet zone loc Local Local fre VPN_Fre VPN Fre swe VPN_Swe VPN Swe Interface ipsec0 is tunnel over eth1. Local is eth0. ipsec0 serves 2 zones: fre and swe, therefore`''-'' and hosts file #ZONE INTERFACE BROADCAST OPTIONS loc eth0 detec...
2008 Jan 10
3
Cycle Regression Analysis in R?
...that will perform cycle regression analysis? I have searched the R-help archives etc. but have come up with nothing so far. If I am unable to find an existing R package to do so, is there anyone familiar with fitting sine functions to data. My problem is this: I have a long time-series of daily SWE estimates (SWE = snow water equivalence, or the amount of water stored in a snowpack) which follows a sinusoidal pattern, and I need to estimate the parameters of the sine function that best fits this data. While there may be many contributing sine functions and/or linear trends, I am only inte...
2013 Jan 29
2
Netcdf and Raster Package Questions, Need .asc File for GIS
...# look at netcdf file header info ncdump -h NOAH32.201204110000.d01.nc ########## # Start R # ########## library(ncdf) ex.nc = open.ncdf("NOAH32.201204110000.d01.nc") print(ex.nc) summary(ex.nc) x = get.var.ncdf(ex.nc, "lon") y = get.var.ncdf(ex.nc, "lat") swe = get.var.ncdf(ex.nc, "SWE") # kg/m2 swe_in <- swe * 0.0393701 # image plot of swe, takes time to load filled.contour(x,y,swe_in, color = terrain.colors, asp = 1) # load raster library library(raster) r = raster(swe_in) # raster is sideways, rotate m <- t(swe_in) m <- m[...
2016 Apr 22
0
clock24.plot/radial plot
...oldpar<-clock24.plot(testlen[7:19],testpos[7:19], > main="Test Clock24 daytime (symbols)", > point.col="blue",rp.type="s",lwd=3) > # reset everything > par(oldpar) > > I tried to play with the script to work with my data. I read my data: > swe<-scan("onedaydata",list(dates="",time="",count="")) > dates<-swe$dates > times<-swe$time > count<-swe$count. > I tried to replace testlen<-rnorm(24)*2+5 with testlen<-count and > oldpar<-clock24.plot(testlen[7:19],testpos[7...
2016 Apr 22
2
clock24.plot/radial plot
...len[7:19],testpos[7:19], >> main="Test Clock24 daytime (symbols)", >> point.col="blue",rp.type="s",lwd=3) >> # reset everything >> par(oldpar) >> >> I tried to play with the script to work with my data. I read my data: >> swe<-scan("onedaydata",list(dates="",time="",count="")) >> dates<-swe$dates >> times<-swe$time >> count<-swe$count. >> I tried to replace testlen<-rnorm(24)*2+5 with testlen<-count and >> oldpar<-clock24.plot(tes...
2016 Apr 22
0
clock24.plot/radial plot
...len[7:19],testpos[7:19], >> main="Test Clock24 daytime (symbols)", >> point.col="blue",rp.type="s",lwd=3) >> # reset everything >> par(oldpar) >> >> I tried to play with the script to work with my data. I read my data: >> swe<-scan("onedaydata",list(dates="",time="",count="")) >> dates<-swe$dates >> times<-swe$time >> count<-swe$count. >> I tried to replace testlen<-rnorm(24)*2+5 with testlen<-count and >> oldpar<-clock24.plot(tes...
2010 Sep 15
1
Difficulty creating Julian day in data frame
...ead.table("C:/VIC/data/vic.data.csv", header=F) names(vic.data) <- c("year", "month", "day", "precip", "evap", "runoff", "baseflow", "Tsup", "SM1", "SM2", "SM3", "SWE") vic.data$temp.date <- as.Date(paste(vic.data$year, "/", vic.data$month, "/", vic.data$day, sep="")) vic.data$julian.day <- julian(vic.data$temp.date, origin = as.Date("1900-01-01"))[1] head(vic.data) year month day...
2016 Apr 29
0
clock24.plot/radial plot: Fixed
...ock24 daytime (symbols)", > >>> point.col="blue",rp.type="s",lwd=3) > >>> # reset everything > >>> par(oldpar) > >>> > >>> I tried to play with the script to work with my data. I read my data: > >>> swe<-scan("onedaydata",list(dates="",time="",count="")) > >>> dates<-swe$dates > >>> times<-swe$time > >>> count<-swe$count. > >>> I tried to replace testlen<-rnorm(24)*2+5 with testlen<-count and...
2012 Apr 17
6
How to add specific column to data.set?
Hi I have a data.set with 7 lists, with over 7000 observations in each list. to of the lists contain country names. like: aus dnk fra aus usa aut itl usa . . . etc. My dilemma is that I want to add an extra column/list to my data.set. If the countries are both european it should be assigned 1 or true AND if one or both the countries are non-european it should be assigned 0 or false.
2011 Feb 14
7
[PATCH] xl cpupool-numa-split: reduce number of Dom0 vcpus
When reducing the number of physical cpus available for Domain-0 by xl cpupool-numa-split, reduce the number of vcpus accordingly. Signed-off-by: juergen.gross@ts.fujitsu.com 1 file changed, 20 insertions(+), 2 deletions(-) tools/libxl/xl_cmdimpl.c | 22 ++++++++++++++++++++-- _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2004 Dec 07
1
connection to the other vpn-gateway, change originating ip
...ans (LAN A & LAN B) connected via freeswan vpn gateways (VPNGW-A & VPNGW-B) over DSL. Logged in at VPNGW-A, I can only connect to the clients *behind* the VPNGW-B but not the VPNGW-B itself. ---- example VPNGW-A# ssh -l remoteuser 172.20.7.1 [IP 80.133.197.130.40523 > 172.20.7.1.ssh: SWE 343226483:343226483(0) win 32440 <mss 16220>] ---- no connection I know that in that case it is not possible to establish such a connection while there is no route back. To establish a ssh connection from VPNGW-A to VPNGW-B I have to use the -b switch from ssh to change my source ip (se...
2010 Jul 28
22
ACPI-Tables corrupted?
...P 00000001) As you can see, the DMAR eye-catcher is replaced by blanks! This leads to a programmed panic in the crash kernel later in case of a panic in dom0... Any ideas? BTW: seen in unstable AND 4.0 Juergen -- Juergen Gross Principal Developer Operating Systems TSP ES&S SWE OS6 Telephone: +49 (0) 89 3222 2967 Fujitsu Technology Solutions e-mail: juergen.gross@ts.fujitsu.com Domagkstr. 28 Internet: ts.fujitsu.com D-80807 Muenchen Company details: ts.fujitsu.com/imprint.html __________________...
2002 Jun 09
1
Logical operators
Hello, I have a csv-file which looks like: #### pwt6_r.csv #### code;year;rgdpch AGO;1998;1234 ALB;1998;3576 ARG;1998;#NA SVN;1996;13439 SWE;1996;21492 AGO;1960;#NA ALB;1960;2345 ARG;1960;4634 #### pwt6_r.csv #### To import this file i call: pwt6<-read.csv("d:/pwt6_r.csv",header=T,na.strings="#NA",sep=";") Now I want to generate a new data.frame which include only + observations for the years 1960 and...
2011 Nov 15
2
xen-unstable/staging: qemu git file corrupt
...1c53bac. fatal: Fetch failed. make[1]: *** [ioemu-dir-find] Error 128 make[1]: Leaving directory `/root/xen-staging.hg/tools'' make: *** [tools/ioemu-dir] Error 2 Something seems to be broken... Juergen -- Juergen Gross Principal Developer Operating Systems PDG ES&S SWE OS6 Telephone: +49 (0) 89 3222 2967 Fujitsu Technology Solutions e-mail: juergen.gross@ts.fujitsu.com Domagkstr. 28 Internet: ts.fujitsu.com D-80807 Muenchen Company details: ts.fujitsu.com/imprint.html _________________...
2011 Nov 17
12
[PATCH] Avoid panic when adjusting sedf parameters
When using sedf scheduler in a cpupool the system might panic when setting sedf scheduling parameters for a domain. Signed-off-by: juergen.gross@ts.fujitsu.com 1 file changed, 4 insertions(+) xen/common/sched_sedf.c | 4 ++++ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2009 Dec 07
1
Autocomplete for phrases
...lts, but we lose the partial results. Also, with a large database (4mil documents) the first query takes an incredibly long time. One idea is to add all possible incomplete versions of each term to the document's term list. For the term 'welcome' we'd also add 'Sw', 'Swe', 'Swel' ... 'Swelcome'. That way we can adjust the user's query to insert the prefix on the final word and then search via a standard phrase search. Not sure what the performance or index size implications of this might be, but we'd be willing to have a shot if this i...
2013 Mar 15
2
strange phenomenon on CPU affinity
Hello, My testing machine has 2 quad-core CPU (It supports hyperthreading, but i disable it in BIOS). I uses Xen 4.0.1 as the hypervisor. When I use 8 VMs to conduct a test, CPU affinity of the VMs is very strange. Like this: vm_name vcpu_num cpu_affinity Domain-0 8 any VM1 4 1,3,5,7 VM2 4 1,3,5,7 VM3 4 1,3,5,7 VM4 4