search for: rbi

Displaying 20 results from an estimated 32 matches for "rbi".

Did you mean: abi
2004 Jun 11
4
Regression query
...basis of multicollinearity ? I'll appreciate if someone can throw some light on this matter and how to use R to detect the interactions effectively . Thanks Regards Dev ------Final 'lm model'-------------------- > logmodelfull_minus_run_hr_walk_batting <- lm(log(salary) ~ hit+rbi + walk + obp + strike.out+free.agent.eligible+free.agent.1991+arbitr.elgible.) > summary(logmodelfull_minus_run_hr_walk_batting) Call: lm(formula = log(salary) ~ hit + rbi + walk + obp + strike.out + free.agent.eligible + free.agent.1991 + arbitr.elgible.) Residuals: Min 1Q Me...
2004 Jun 11
1
Regression query : steps for model building
...ticollinearity ? I'll appreciate if someone can throw some light on this matter and how to use R to detect the interactions effectively . Thanks Regards Dev > ------Final 'lm model'-------------------- > > logmodelfull_minus_run_hr_walk_batting <- lm(log(salary) ~ hit+rbi + walk > + obp + strike.out+free.agent.eligible+free.agent.1991+arbitr.elgible.) > > summary(logmodelfull_minus_run_hr_walk_batting) > > Call: > lm(formula = log(salary) ~ hit + rbi + walk + obp + strike.out + > free.agent.eligible + free.agent.1991 + arbitr.elgible.) >...
2013 Aug 23
1
[PATCH] VMXNET3: Add support for virtual IOMMU
...eof(tq->buf_info[0]); + tq->buf_info = dma_zalloc_coherent(&adapter->pdev->dev, sz, + &tq->buf_info_pa, GFP_KERNEL); if (!tq->buf_info) goto err; @@ -578,7 +583,8 @@ vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, break; } - rbi->dma_addr = pci_map_single(adapter->pdev, + rbi->dma_addr = dma_map_single( + &adapter->pdev->dev, rbi->skb->data, rbi->len, PCI_DMA_FROMDEVICE); } else { @@ -595,7 +601,8 @@ vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx,...
2013 Aug 23
1
[PATCH] VMXNET3: Add support for virtual IOMMU
...eof(tq->buf_info[0]); + tq->buf_info = dma_zalloc_coherent(&adapter->pdev->dev, sz, + &tq->buf_info_pa, GFP_KERNEL); if (!tq->buf_info) goto err; @@ -578,7 +583,8 @@ vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, break; } - rbi->dma_addr = pci_map_single(adapter->pdev, + rbi->dma_addr = dma_map_single( + &adapter->pdev->dev, rbi->skb->data, rbi->len, PCI_DMA_FROMDEVICE); } else { @@ -595,7 +601,8 @@ vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx,...
2010 Apr 18
2
sample period specification
...iod in the R. Regards Muneesh Muneesh Kapur Director, Department of Economic Analysis and Policy and Executive Assistant to Deputy Governor Dr.Subir Gokarn, Reserve Bank of India Central Office, Fort, Mumbai 400001 India Tel +91-22-2261 0986; +91-22-2261 0990 Fax +91-22-2267 5831 mail: mkapur at rbi.org.in<mailto:mkapur at rbi.org.in> ________________________________ Notice: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, any dissemination, use, re...
2009 Apr 02
1
calculating drop1 R^2s
...for vif/recode data(Baseball) # sal87 appears as a factor because missing is coded as '.' rather than NA Baseball$sal87 <- as.numeric(recode(Baseball$sal87, "'.'=NA")) Baseball$logsal <- log(Baseball$sal87) base.mod <- lm(logsal ~ years+atbat+hits+homeruns+runs+rbi+walks, data=Baseball) vif(base.mod) (drop.mod <- drop1(base.mod)) Single term deletions Model: logsal ~ years + atbat + hits + homeruns + runs + rbi + walks Df Sum of Sq RSS AIC <none> 124.612 -180.447 years 1 0.010 124.622 -182.426 atbat...
2020 Oct 02
3
Lahman Baseball Data Using R DBI Package
...******************************************************************************************************************* tail(dbReadTable(Lahman,"batting")) ID playerID yearID stint teamID team_ID lgID G G_batting AB R H X2B X3B HR RBI SB 107414 107414 yastrmi01 2019 1 SFN 2920 NL 107 NA 371 64 101 22 3 21 55 2 107416 107416 yelicch01 2019 1 MIL 2911 NL 130 NA 489 100 161 29 3 44 97 30 1...
2020 Oct 03
1
Lahman Baseball Data Using R DBI Package
...******************************************************************************** >> tail(dbReadTable(Lahman,"batting")) >> >> ID playerID yearID stint teamID team_ID >> lgID G G_batting AB R H X2B X3B HR RBI SB >> 107414 107414 yastrmi01 2019 1 SFN 2920 >> NL 107 NA 371 64 101 22 3 21 >> 55 2 >> 107416 107416 yelicch01 2019 1 MIL 2911 >> NL 130 NA 489 100 161...
2009 Oct 06
1
[PATCH 2.6.32-rc3] net: VMware virtual Ethernet NIC driver: vmxnet3
...e and update the rx desc. stop after @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_base + ring->next2fill; + gd = ring->base + ring-&g...
2009 Oct 06
1
[PATCH 2.6.32-rc3] net: VMware virtual Ethernet NIC driver: vmxnet3
...e and update the rx desc. stop after @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_base + ring->next2fill; + gd = ring->base + ring-&g...
2009 Oct 12
1
[PATCH 2.6.32-rc4] net: VMware virtual Ethernet NIC driver: vmxnet3
...e and update the rx desc. stop after @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_base + ring->next2fill; + gd = ring->base + ring-&g...
2009 Oct 12
1
[PATCH 2.6.32-rc4] net: VMware virtual Ethernet NIC driver: vmxnet3
...e and update the rx desc. stop after @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_base + ring->next2fill; + gd = ring->base + ring-&g...
2009 Sep 30
4
[PATCH 2.6.32-rc1] net: VMware virtual Ethernet NIC driver: vmxnet3
...e and update the rx desc. stop after @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_base + ring->next2fill; + gd = ring->base + ring-&g...
2009 Sep 30
4
[PATCH 2.6.32-rc1] net: VMware virtual Ethernet NIC driver: vmxnet3
...e and update the rx desc. stop after @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_base + ring->next2fill; + gd = ring->base + ring-&g...
2020 Oct 08
0
Lahman Baseball Data Using R DBI Package
...************************************************************ > >> tail(dbReadTable(Lahman,"batting")) > >> > >> ID playerID yearID stint teamID team_ID > >> lgID G G_batting AB R H X2B X3B HR RBI SB > >> 107414 107414 yastrmi01 2019 1 SFN 2920 > >> NL 107 NA 371 64 101 22 3 21 > >> 55 2 > >> 107416 107416 yelicch01 2019 1 MIL 2911 > >> NL 130 NA...
2006 Feb 23
2
Working with lists with numerical names
...database. Several of the database columns have numbers in them (2B, 3B), and when I try to use these vectors from the data frame, I get syntax errors, probably because it's interpreting the name as a number: > show(batting2005) playerID yearID stint teamID lgID G AB R H 2B 3B HR RBI SB CS BB 1 robleos01 2005 1 LAN NL 110 364 44 99 18 1 5 34 0 8 31 2 iguchta01 2005 1 CHA AL 135 511 74 142 25 6 15 71 15 5 47 3 molinya01 2005 1 SLN NL 114 385 36 97 15 1 8 49 2 3 23 . . . > print(batting2005$HR) [1] 5 15...
2020 Oct 08
1
Lahman Baseball Data Using R DBI Package
...************************************ > > >> tail(dbReadTable(Lahman,"batting")) > > >> > > >> ID playerID yearID stint teamID team_ID > > >> lgID G G_batting AB R H X2B X3B HR > RBI SB > > >> 107414 107414 yastrmi01 2019 1 SFN 2920 > > >> NL 107 NA 371 64 101 22 3 21 > > >> 55 2 > > >> 107416 107416 yelicch01 2019 1 MIL 2911 > > >&g...
2017 Feb 01
15
[PATCH 00/14] hyperv: vmbus related patches
This is a rebase/resend of earlier patches. I skipped the pure cosmetic patches for now. Mostly this is consolidation earlier changes, removing dead code etc. The important part is the change for allowing a vmbus channel to get callback directly in interrupt mode; this is necessary for NAPI support. Stephen Hemminger (14): vmbus: use kernel bitops for traversing interrupt mask vmbus: drop
2017 Feb 01
15
[PATCH 00/14] hyperv: vmbus related patches
This is a rebase/resend of earlier patches. I skipped the pure cosmetic patches for now. Mostly this is consolidation earlier changes, removing dead code etc. The important part is the change for allowing a vmbus channel to get callback directly in interrupt mode; this is necessary for NAPI support. Stephen Hemminger (14): vmbus: use kernel bitops for traversing interrupt mask vmbus: drop
2009 Sep 28
4
[PATCH 2.6.31-rc9] net: VMware virtual Ethernet NIC driver: vmxnet3
...fter @num_to_alloc buffers + * are allocated or allocation fails + */ + +static int +vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx, + int num_to_alloc, struct vmxnet3_adapter *adapter) +{ + int num_allocated = 0; + struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx]; + struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx]; + u32 val; + + while (num_allocated < num_to_alloc) { + struct vmxnet3_rx_buf_info *rbi; + union Vmxnet3_GenericDesc *gd; + + rbi = rbi_b...