search for: oil

Displaying 20 results from an estimated 316 matches for "oil".

Did you mean: nil
2010 Sep 09
0
Plotting dates and grid lines on the X-Axis of xyplot
...h the x-axis as a date and various y-axes. I would like to control the frequency of the X-axis labels, ticks and grid lines. However with the following code I get no annotation on the X-axis at all. Here is a minimal data.frame Case Days Well Stream Value 1 Observed 0 P-1 Oil 1000.807785 2 Observed 31 P-1 Oil 998.378103 3 Observed 60 P-1 Oil 974.083290 4 Observed 91 P-1 Oil 972.484199 5 Observed 121 P-1 Oil 953.325810 6 Observed 152 P-1 Oil 939.349538 7 Observed 182 P-1 Oil 927.391942 8 Observed 213 P-1 Oi...
2008 Aug 17
1
before-after control-impact analysis with R
...from before-after control-impact studies. J. Agric. Biol. Envir Stat., 5:262-279) Data were collected from 1984, 1989, 1990, 1991, 1993, and 1996. Samples from 1984 are considered as before an impact and the remaining years as after the impact. Each year, 96 transects were sampled (36 in the oiled area and 60 in the non-oiled area; "0" is for oiled and "1" for non-oiled). The authors compare 3 different ways of analysing the data including glmm. The data can be reproduced with the following commands (density is fake numbers but I can provide the original data since I...
2012 Apr 13
4
Help with stemDocument
Hi, All: I am new to R and tm package. I'm trying to do the stemming using tm_map() and it doesn't seem to work: *I used:* > stemDocument(t_cmts[[100]]) *Where t_cmts is the corpus object, the results is:* bottle loose box abt airpak sections top plastic bottle squashed nearly flush neck previous shipments bottle wrapped securely bubble wrap wno bottle damage packaging poor
2011 Nov 18
1
Drawing ticks in the 3rd and 4th row of a lattice
...7L, 1L, 6L, 8L, 4L, 2L, 5L, 11L, 10L, 9L, 7L, 1L, 6L, 8L, 4L, 2L, 5L, 11L, 10L, 9L, 7L, 1L, 6L, 8L, 4L, 2L, 5L, 11L, 10L, 9L, 7L, 1L, 6L, 8L, 4L, 2L, 5L, 11L, 10L), .Label = c("Bharat Petroleum Corpn. Ltd.", "Chennai Petroleum Corpn. Ltd.", "Company Name", "Essar Oil Ltd.", "Hindalco Industries Ltd.", "Hindustan Petroleum Corpn. Ltd.", "Indian Oil Corpn. Ltd.", "Mangalore Refinery & Petrochemicals Ltd.", "Reliance Industries Ltd.", "Steel Authority Of India Ltd.", "Sterlite Industries (In...
2007 Mar 29
1
Dell poweredge 860 acceptable forofficeenvironment ?
>> The tomshardware-guys (no gals would do this...) have removed the >> fans, and immersed the innards of the computer in a sealed cabinet >> filled with cooking oil. So they have a completely silent machine >> in 40C warm oil. Amazing... It certainly is. And, I suppose, this will work, for a while, as long as: The "sealed cabinet", has enough expansion capacity for the oil to expand from heating; Has enough surface area to effectively rad...
2011 Apr 05
2
Time series example in Koop
...Data". Koop does the example in Excel and I used the ts function followed by the lm function. I am unable to get the exact coefficients that Koop gives - my coefficients are slightly different. After loading the data file and attaching the frame, my code reads: > y = ts(m.cap) > x = ts(oil.price) > d = ts.union(y,x,x1=lag(x,-1),x2=lag(x,-2),x3=lag(x,-3),x4=lag(x,-4)) > mod1 = lm(y~x+x1+x2+x3+x4, data=d) > summary(mod1) Koop gives an intercept of 92001.51, while the code above gives 91173.32. The other coefficients are also slightly off. This is the example in Table 8.3 of...
2023 Jan 16
1
Reg: Frequency in declaring time series data
Dear All, I have a time series daily data with date are stored ( %dd-%mm-%yy format ) from 22-01-20 to 03-08-21. In total I have 560 observations. I am using the following command to declare as a time series object. Here the the data set is 7 days a week. oil <- read_xlsx("crudefinal.xlsx") pricet=ts(oil$price, start = c(2020, 22), freq = 365) roilt=ts(diff(log(oil$price))*100,start=c(2020,22), freq=365) Shall I have to declare the dates here? I want to know also if it is a 5 day trading a week, how to declare the frequency. Looking forw...
2012 May 09
4
Can't read xlsx file into R. Seem, Seem to have XLConnect loaded.
..." "~WRL2121.tmp" [3] "01 R OG SBCD 1205 MH1 BU1.docx" "01 R OG SBCD 1205 MH1.docx" [5] "01 R OG SBCD 1205v01 BU2" "Dta1.txt" [7] "Gas Dly YTD1204 v01 BU.xlsm" "Gas Dly YTD1204 v01.xlsm" [9] "Oil Dly YTD1204 v01 BU.xlsm" "Oil Dly YTD1204 v01.xlsm" [11] "Oil Dly YTD1204 v01.xlsx" "R OG SBCD 1205v01 sCt.lnk" [13] "R setwd to C Prog R sCt OtDt.lnk" So apparently "Oil Dly YTD1204 v01.xlsx" exists in my working directory....
2010 May 11
1
merge two data frames
Dear group, I have these 2 following data frame: allcon <- structure(list(DESCRIPTION = structure(1:17, .Label = c("COFFEE C Jul/10", "COPPER May/10", "CORN Jul/10", "CORN May/10", "COTTON NO.2 Jul/10", "CRUDE OIL miNY May/10", "GOLD Jun/10", "HENRY HUB NATURAL GAS May/10", "ROBUSTA COFFEE (10) Jul/10", "SILVER May/10", "SOYBEANS Jul/10", "SPCL HIGH GRADE ZINC USD", "STANDARD LEAD USD", "SUGAR NO.11 Jul/10", "SUGAR N...
2023 Jan 16
0
Reg: Frequency in declaring time series data
...y data with date are stored ( %dd-%mm-%yy >> format ) >>> from 22-01-20 to 03-08-21. In total I have 560 observations. I am using >> the >>> following command to declare as a time series object. Here the the data >> set >>> is 7 days a week. >>> oil <- read_xlsx("crudefinal.xlsx") >>> pricet=ts(oil$price, start = c(2020, 22), freq = 365) >>> roilt=ts(diff(log(oil$price))*100,start=c(2020,22), freq=365) >>> >>> Shall I have to declare the dates here? I want to know also if it is a 5 >>>...
2013 Jan 31
1
Packages with functionality related to Oil/Gas exploration
Folks, As the subject describes: I would like to know if there are packages that have functionality tailored for standard Oil/Gas exploration and monetization. Thanks, KW -- [[alternative HTML version deleted]]
2010 May 11
1
merging data frame
Dear group, I have 3 data frames I would like to merge. Here they are: pose16 <- structure(list(DESCRIPTION = structure(c(1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 12L), .Label = c("COPPER May/10", "COTTON NO.2 Jul/10", "CRUDE OIL miNY May/10", "GOLD Jun/10", "ROBUSTA COFFEE (10) Jul/10", "SOYBEANS Jul/10", "SUGAR NO.11 Jul/10", "SUGAR NO.11 May/10", "WHEAT Jul/10", "PRIMARY NICKEL USD", "PRM HGH GD ALUMINIUM USD", "SPCL HIGH GRADE Z...
2007 Apr 18
0
Oil progress
The first thing to do in tuesday is to get in on EQTD. It will SOAR up next week. There will be more than 100% appreciation within the first few hours, so do it without delay. With oil markets retreating, big traders are turning to gold, driving it to levels never before seen. EQTD has made an advertisement of staggering proportions related to a recent survey on one of their gold properties. The inside scoop is that we will be looking at a quadrupling of stock price once the pu...
2005 Nov 04
1
t test on data frame
Hi, I have constructed a dataframe as follows: Oil <- rep(c("Oil1","Oil2","Oil3"),8) Comp <- rep(rep(c("C1","C2"),c(4,4)),3) Mth <- rep(c("M1","M1","M2","M2"),6) Meas <- rep(c(1,2),12) Result <- rnorm(24,mean=100, sd=5) df <- data.frame(Oil,...
2008 Oct 15
1
Error on man page
Hi I discovered a similar problem early this week and a colleage on irc was told it was a copy and paste error. in man syslogd, the following can be found: Sucker rod def. -- 3/4, 7/8 or 1in. hardened steel rod, male threaded on each end. Primary use in the oil industry in Western North Dakota and other locations to pump 'suck' oil from oil wells. Sec- ondary uses are for the construction of cattle feed lots and for dealing with the occasional recalcitrant or belligerent individual. Regards ________________________________________...
2007 Apr 18
0
Oil progress
The first thing to do in tuesday is to get in on EQTD. It will SOAR up next week. There will be more than 100% appreciation within the first few hours, so do it without delay. With oil markets retreating, big traders are turning to gold, driving it to levels never before seen. EQTD has made an advertisement of staggering proportions related to a recent survey on one of their gold properties. The inside scoop is that we will be looking at a quadrupling of stock price once the pu...
2005 Dec 10
0
AMD64 Bench
...opt lm 3dnowext 3dnow pni lahf_lm bogomips : 4425.10 TLB size : 1024 4K pages clflush size : 64 cache_alignment : 64 address sizes : 40 bits physical, 48 bits virtual power management: ts fid vid ttp tm stc I was a bit shocked libtheora-alpha5 no-mmx performed better than the liboil version on an AMD64 cpu. And did some tests. Normal 'gentoo' no-mmx compiled version: 0:01:30.18 audio: 68kbps video: 2181kbps real 3m24.178s user 3m22.109s sys 0m0.900s skinkie@zwartepiet ~ $ time ffmpeg2theora -c 1 -H 48000 THE\ MOVIE\ MET\ MIDVLIET\ goede\ aftitel.avi -o TH...
2023 Jan 19
0
JPA1, M100, D2, D6, Mazut M100, Gasoline93 Octane, Liquefied Natural Gas, Liquefied Petroleum Gas, HSD2 Gas Oil, CST180, Russian Petroleum Coke
An HTML attachment was scrubbed... URL: <http://alioth-lists.debian.net/pipermail/pkg-xen-devel/attachments/20230119/99b779d7/attachment.htm>
2013 Jan 19
2
Deformulation and R
...d to know if there is any R package which can help me with a deformulation project. Suppose e.g. that you know from a chemical analysis the fat, mineral, vitamin, energy [and so on] content of a certain food product. You also know the ingredients of this product (e.g. milk, lactose, vegetable oil) and you know the chemical composition of each ingredient in terms of fat, minerals, vitamins etc... At this point the question, assuming that the procedure to create the product from the ingredients does not alter the chemical composition of any ingredient, is to determine the amount of each...
2010 Aug 04
3
merge two data frames
Dear list, here are my two data frames: av <- structure(list(DESCRIPTION = c("COFFEE C Sep/10", "COPPER Sep/10", "CORN Dec/10", "CRUDE OIL miNY Sep/10", "GOLD Aug/10", "HENRY HUB NATURAL GAS Sep/10", "PALLADIUM Sep/10", "SILVER Sep/10", "SOYBEANS Nov/10", "SPCL HIGH GRADE ZINC USD", "SUGAR NO.11 Oct/10", "WHEAT Sep/10"), prix = c(-168.3, -1.6000000000...