search for: 304l

Displaying 20 results from an estimated 23 matches for "304l".

Did you mean: 304
2010 Dec 27
1
Can't merge on datetime?
...10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L), year = c(110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L, 110L), wday = c(1L, 2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L, 5L, 1L), yday = c(304L, 305L, 306L, 307L, 308L, 311L, 312L, 313L, 314L, 315L, 318L, 319L, 320L, 321L, 322L, 325L, 326L, 327L, 328L, 329L, 332L), isdst = c(0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L)), .Names = c("sec", "min", "hour", "mday&quo...
2008 Oct 14
1
ggplot2 plot with symbols and then add line
..."), class = "data.frame", row.names = c(12L, 13L, 14L, 19L, 25L, 26L, 28L, 34L, 35L, 36L, 37L, 42L, 44L, 58L, 75L, 85L, 88L, 91L, 97L, 107L, 142L, 144L, 155L, 166L, 169L, 185L, 186L, 201L, 202L, 207L, 219L, 221L, 222L, 224L, 226L, 230L, 231L, 250L, 251L, 258L, 283L, 287L, 288L, 303L, 304L, 306L, 311L, 313L))) library(lattice) library(ggplot2) z <- nls(GPP~(a/(TSS+b)), start=c(a=0.01, b=0.01), data=r) f <- seq(-1, 29, length=100) y <- coef(z)["a"]/(f+coef(z)["b"]) pred <- data.frame(GPP = f, TSS = y) #this is what I can do qplot(TSS, GPP, data=r, col...
2012 Jan 06
1
ggplot using scale_x_date gives Error in seq.int(r1$year, to$year, by)
...Price", "Yield", "CDS Spread"), class = "factor"), value = c(86.777, 86.037, 86.437, 9.737, 9.542, 9.683, 580.132, 576.866, 573.564)), .Names = c("Date", "variable", "value" ), row.names = c(100L, 101L, 102L, 202L, 203L, 204L, 304L, 305L, 306L), class = "data.frame") > g Date variable value 100 2011-12-23 Price 86.8 101 2011-12-30 Price 86.0 102 2012-01-06 Price 86.4 202 2011-12-23 Yield 9.7 203 2011-12-30 Yield 9.5 204 2012-01-06 Yield 9.7 304 2011-12-23 CDS Sp...
2011 Jun 17
3
[LLVMdev] Custom lowering DYNAMIC_STACKALLOC
...I would also like some feedback on this implementation in general. Secondly, the problem I'm facing: in the final assembly generated, the move instruction to RAX, in (c) is absent. I suspected this has something to do with the liveness analysis pass. With -debug-only=liveintervals, I see this 304L %vreg5<def> = COPY %RAX<kill>; GR64:%vreg5 in the basic block I jump to after allocating the memory (both after bumping the SP or after calling the runtime). Perhaps this causes the pass to think the assignment to RAX is not needed, and can be removed? My guess is that it has something...
2013 Feb 27
2
matrix multiplication
...157L, 220L, 74L, 356L,? 495L, 453L, 26L, 499L, 364L, 267L, 331L, 245L, 258L, 242L, 381L,? 36L, 16L, 328L, 131L, 255L, 363L, 298L, 373L, 416L, 200L, 56L,? 263L, 288L, 13L, 305L, 291L, 17L, 53L, 130L, 458L, 385L, 198L,? 158L, 140L, 492L, 249L, 27L, 134L, 479L, 171L, 177L, 9L, 355L,? 398L, 380L, 404L, 304L, 129L, 338L, 281L, 65L, 386L, 144L, 252L,? 77L, 352L, 20L, 96L, 403L, 296L, 268L, 489L, 63L, 424L, 496L,? 126L, 334L, 183L, 232L, 406L, 407L, 163L, 346L, 287L, 475L, 127L,? 321L, 124L, 237L, 308L, 376L, 212L, 423L, 211L, 329L, 437L, 179L,? 253L, 372L, 101L, 251L, 90L, 433L, 311L, 241L, 327L, 422L,...
2011 Oct 21
0
[LLVMdev] Problems with live intervals and spilling when having sub registers?
Hi, I'm having some trouble understanding if the live intervals calculated for one of my testcases are correct or not. I have the following instructions: 272L %vreg67:lo<def> = mv_any16 65535; R:%vreg67 288L %vreg64:hi<def> = mv_any16 16383; R:%vreg64 304L %vreg64:lo<def> = COPY %vreg67:lo; R:%vreg64,%vreg67 320L %vreg6<def> = COPY %vreg64<kill>; R:%vreg6,%vreg64 So, %vreg64, which has two (disjunct) sub registers, gets its two parts written at 288 and 304, and then the whole %vreg64 is copied to %vreg6 at 320. And for this I ge...
2011 Jun 17
0
[LLVMdev] Custom lowering DYNAMIC_STACKALLOC
...n this implementation in general. > > Secondly, the problem I'm facing: in the final assembly generated, the > move instruction to RAX, in (c) is absent. I suspected this has > something to do with the liveness analysis pass. With > -debug-only=liveintervals, I see this > > 304L %vreg5<def> = COPY %RAX<kill>; GR64:%vreg5 Is SEG_ALLOCA marked as writing to RAX? Is this code in github? It has been a long time since I looked at selection dags, but I could take a look. btw, have you got -view-isel-dags (and the other view dags options) working? They are reall...
2008 Oct 09
1
nls, lattice, and conversion over to ggplot
..."), class = "data.frame", row.names = c(12L, 13L, 14L, 19L, 25L, 26L, 28L, 34L, 35L, 36L, 37L, 42L, 44L, 58L, 75L, 85L, 88L, 91L, 97L, 107L, 142L, 144L, 155L, 166L, 169L, 185L, 186L, 201L, 202L, 207L, 219L, 221L, 222L, 224L, 226L, 230L, 231L, 250L, 251L, 258L, 283L, 287L, 288L, 303L, 304L, 306L, 311L, 313L))) library(lattice) z <- nls(GPP~(a/(TSS+b)), start=c(a=0.01, b=0.01), data=r) f <- seq(-1, 29, length=100) y <- coef(z)["a"]/(f+coef(z)["b"]) xyplot(GPP~TSS, data=r, xlim=c(-0.5, 29), groups=RiverMile ,auto.key=TRUE , pch=20 ,panel=function(...) {pa...
2012 Sep 05
4
Summarizing data containing data/time information (as factor)
Dear R user I want to create a table (as below) to summarize the attached data (Test.csv, which can be read into R by using 'read.csv(Test.csv, header=F)' ), to indicate the day that there are any data available, e.g.value=1 if there are any data available for that day, otherwise value=0. 28/04 29/04 30/04 01/05 02/05 532703 0 1 1
2017 Dec 06
2
Odd dates generated in Forecasts
..., 319L, 333L, 347L, 361L, 375L, 389L, 403L, 417L, 431L, 445L, 459L, 473L, 487L, 501L, 515L, 529L, 543L, 557L, 571L, 585L, 599L, 613L, 627L, 641L, 655L, 669L, 683L, 697L, 711L, 725L, 9L, 23L, 37L, 51L, 65L, 79L, 93L, 107L, 122L, 136L, 150L, 164L, 178L, 192L, 206L, 220L, 234L, 248L, 262L, 276L, 290L, 304L, 318L, 332L, 346L, 360L, 374L, 388L, 402L, 416L, 430L, 444L, 458L, 472L, 486L, 500L, 514L, 528L, 542L, 556L, 570L, 584L, 598L, 612L, 626L, 640L, 654L, 668L, 682L, 696L, 710L, 724L, 7L, 21L, 35L, 49L, 63L, 77L, 91L, 105L, 119L, 133L, 147L, 161L, 175L, 189L, 203L, 217L, 231L, 245L, 259L, 273L, 287L,...
2017 Dec 06
0
Odd dates generated in Forecasts
...361L, 375L, 389L, 403L, 417L, > 431L, 445L, 459L, 473L, 487L, 501L, 515L, 529L, 543L, 557L, 571L, > 585L, 599L, 613L, 627L, 641L, 655L, 669L, 683L, 697L, 711L, 725L, > 9L, 23L, 37L, 51L, 65L, 79L, 93L, 107L, 122L, 136L, 150L, 164L, > 178L, 192L, 206L, 220L, 234L, 248L, 262L, 276L, 290L, 304L, 318L, > 332L, 346L, 360L, 374L, 388L, 402L, 416L, 430L, 444L, 458L, 472L, > 486L, 500L, 514L, 528L, 542L, 556L, 570L, 584L, 598L, 612L, 626L, > 640L, 654L, 668L, 682L, 696L, 710L, 724L, 7L, 21L, 35L, 49L, > 63L, 77L, 91L, 105L, 119L, 133L, 147L, 161L, 175L, 189L, 203L, > 217L, 231L,...
2017 Dec 06
1
Odd dates generated in Forecasts
...3L, 417L, > > 431L, 445L, 459L, 473L, 487L, 501L, 515L, 529L, 543L, 557L, 571L, > > 585L, 599L, 613L, 627L, 641L, 655L, 669L, 683L, 697L, 711L, 725L, > > 9L, 23L, 37L, 51L, 65L, 79L, 93L, 107L, 122L, 136L, 150L, 164L, > > 178L, 192L, 206L, 220L, 234L, 248L, 262L, 276L, 290L, 304L, 318L, > > 332L, 346L, 360L, 374L, 388L, 402L, 416L, 430L, 444L, 458L, 472L, > > 486L, 500L, 514L, 528L, 542L, 556L, 570L, 584L, 598L, 612L, 626L, > > 640L, 654L, 668L, 682L, 696L, 710L, 724L, 7L, 21L, 35L, 49L, > > 63L, 77L, 91L, 105L, 119L, 133L, 147L, 161L, 175L, 189L, 20...
2009 May 21
2
Naming a random effect in lmer
Dear guRus: I am using lmer for a mixed model that includes a random intercept for a set of effects that have the same distribution, Normal(0, sig2b). This set of effects is of variable size, so I am using an as.formula statement to create the formula for lmer. For example, if the set of random effects has dimension 8, then the lmer call is: Zs<-
2018 May 16
1
Systemfit Question
..., 308L, 329L, 363L, 405L, 444L, 446L, 448L, 440L, 447L, 455L, 432L, 439L, 417L, 393L, 344L, 289L, 234L, 267L, 283L, 287L, 330L, 383L, 358L, 365L, 340L, 333L, 320L, 297L, 313L, 394L, 406L, 388L, 387L, 416L, 418L, 403L, 365L, 356L, 319L, 304L, 306L, 346L, 354L, 294L, 295L, 400L, 419L, 401L, 404L, 398L, 410L, 425L, 437L, 424L, 382L, 391L, 397L, 407L, 415L, 298L, 225L, 191L, 209L, 184L, 188L, 207L, 241L, 264L, 290L, 288L, 323L, 377L, 357L, 359L, 430L, 389L, 401L, 384L, 373L,...
2018 May 16
0
Systemfit
...?????????????????????????358L, >365L, 340L, 333L, 320L, 297L, 313L, 394L, 406L, 388L,? > >???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????387L, >416L, 418L, 403L, 365L, 356L, 319L, 304L, 306L, 346L,? > >???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????354L, >294L, 295L, 400L, 419L, 401L, 404L, 398L, 410L, 425L,? > >???????????????????????????????????????????????...
2018 May 15
2
Systemfit
...?????????????????????????????????????????358L, 365L, 340L, 333L, 320L, 297L, 313L, 394L, 406L, 388L,? ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????387L, 416L, 418L, 403L, 365L, 356L, 319L, 304L, 306L, 346L,? ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????354L, 294L, 295L, 400L, 419L, 401L, 404L, 398L, 410L, 425L,? ???????????????????????????????????????????????????????????????????...
2008 Aug 01
0
multinomRob: Error in eigen [..] infinite or missing values in 'x'
...228L, 229L, 230L, 231L, 232L, 233L, 234L, 235L, 236L, 237L, 238L, 239L, 240L, 241L, 242L, 243L, 244L, 245L, 246L, 247L, 261L, 262L, 263L, 264L, 265L, 266L, 267L, 268L, 269L, 270L, 271L, 272L, 273L, 274L, 275L, 276L, 277L, 278L, 279L, 280L, 281L, 282L, 283L, 284L, 285L, 286L, 300L, 301L, 302L, 303L, 304L, 305L, 306L, 307L, 308L, 309L, 310L, 311L, 312L, 313L, 314L, 315L, 316L, 317L, 318L, 319L, 320L, 321L, 322L, 323L, 324L, 325L, 339L, 340L, 341L, 342L, 343L, 344L, 345L, 346L, 347L, 348L, 349L, 350L, 351L, 352L, 353L, 354L, 355L, 356L, 357L, 358L, 359L, 360L, 361L, 362L, 363L, 364L, 378L, 379L, 380L...
2012 Aug 27
2
Font size in geom_dl (using ggplot2)
Hey everyone, I am an R-newby... so sorry for bothering you with simple-to-solve questions;) I have the following issue: trying to add labels to my scatterplots (with geom_dl in ggplot2). Everything works fine, but after checking every resource I do not find a way to change the font size of my labels. I tried size, cex, fontsize at every position... but it always stays the same. ggplot()+
2018 May 15
0
Systemfit
... and the mailing list is picky about attachments... whatever you attached did not conform to the stringent requirements mentioned in the Posting Guide. Pasting the code right into the email is usually safest, though you DO have to post using plain text (as the Posting Guide indicates) or your code may get mangled by the automatic html format removal. On May 15, 2018 7:04:31 AM PDT, Bert Gunter
2012 Jul 10
2
estimation of NA by predict command
...8L, 1840L, 1972L, 2104L, 2236L, 2368L, 2500L, 2632L, 2764L, 2896L, 3028L, 3160L, 3292L, 3424L, 3556L, 3688L, 3811L, 3932L, 4009L, 4L, 136L, 268L, 400L, 532L, 664L, 796L, 928L, 1060L, 1192L, 1324L, 1456L, 1588L, 1720L, 1852L, 1984L, 2116L, 2248L, 2380L, 2512L, 2644L, 2776L, 2908L, 3040L, 3172L, 3304L, 3436L, 3568L, 3700L, 3823L, 3944L, 15L, 147L, 279L, 411L, 543L, 675L, 807L, 939L, 1071L, 1203L, 1335L, 1467L, 1599L, 1731L, 1863L, 1995L, 2127L, 2259L, 2391L, 2523L, 2655L, 2787L, 2919L, 3051L, 3183L, 3315L, 3447L, 3579L, 26L, 158L, 290L, 422L, 554L, 686L, 818L, 950L, 1082L, 1214L, 1346L, 147...