Displaying 18 results from an estimated 18 matches for "url1".
Did you mean:
url
2010 Jul 21
1
Command that is conditional upon file retrieval: is it possible?
...;m currently working on an R program where I have to access an FTP server
to download some of the data I need. However, the people who post up the
files I access are at times inconsistent with regards to time posted, if
they post at all, etc.... Here's some of the code I use:
library(RCurl)
url1 = paste("ftp://user:password at a.great.website.com/", "file", num1,
".csv", sep = "")
data1 = getURL(url1)
write(data1, file = paste("inMyFolder", num1, ".csv", sep = ""))
Sometimes this process works perfectly, and sometime...
2015 Apr 30
2
búsqueda y sustitución masiva
...a
descomprimido llegando a un registro de 900.
El problema que tengo es que estoy intentando hacer un loop para hacer la
sustitución de la url comprimida por su equivalente descomprimido, pero no
hay manera.
Los datos que tengo son:
url.origin$V1 es la lista de url originales (más de 15K)
url.des$url1 es la lista de url originales únicas
url.des$url2 es la lista de url descomprimidas equivalentes a url.des$url1
El último código con el que he probado es el siguiente pero sin buenos
resultados:
recoderFunc <- function(data, oldvalue, newvalue) {
# convertir los factores en caracteres
i...
2012 Nov 04
2
Replacing a string
Hi,
I have what I hope is a simple text processing question in R.
I want to replace every instance of http:\\XXX.com with "WEBSITE"
When I try
sub('(^http://)(.com$)', 'WEBSITE', <filename>);,
it only substitutes http:// and .com so it looks like
WEBSITEXXXWEBSITE
How do I get it to match the pattern
"http:// . . . . .com" and substitute the whole
2010 Mar 07
8
Parsing XML file with no style info with Hpricot
Hello,
I''ve been trying for hours to parse an XML using Hpricot. Usually it''s
not a problem. Here''s my simple code:
#This works and outputs the proper xml data
@url1 = ''http://www.sportingnews.com/stories/sportingnews/MLB/rss.xml''
@page1 = Hpricot(open(@url1))
<%= @page 1 %>
#This does not work, and I''m scratching my head
@url1 =
''http://gd2.mlb.com/components/game/mlb/year_2010/month_03/day_06/gid_2010_03_06_anamlb_oa...
2018 Mar 11
2
Your browser do not suport oracle bi presentation services
Hi dear R users:
I'm trying the following code to download an information from the web.
url1 <- "http://obieebr.banrep.gov.co/analytics/saw.dll?Go&Path=%2fshared%2fSeries%20Estad%C3%ADsticas_T%2f1.%20Tasa%20de%20Cambio%20Peso%20Colombiano%2f1.1%20TRM%20-%20Disponible%20desde%20el%2027%20de%20noviembre%20de%201991%2f1.1.1.TCM_Serie%20hist%C3%B3rica%20o%20por%20a%C3%B1o&Optio...
2008 Aug 12
1
Problem with using read.csv with web address
...w.do?a=3&b=5940246&c=Stoke&d=14&e=7&f=73&g=401878&i=1001x1003x1004x1005&l=145&o=1&m=0&r=1&s=1211997884568&enc=1&downloadTable=Download+this+table
I was trying the following:
#the parameter FamilyId I will need to change to get other datasets
url1 <- paste("
http://www.neighbourhood.statistics.gov.uk/dissemination/LeadTableView.do?a=3&b=5940246&c=Stoke&d=14&e=7&f=73&g=401878&i=1001x1003x1004x1005&l=",FamilyId,"&o=1&m=0&r=1&s=1211997884568&enc=1&downloadTable=Download+...
2018 Mar 11
0
Your browser do not suport oracle bi presentation services
On Sun, Mar 11, 2018 at 09:12:56AM -0500, KENNETH ROY CABRERA TORRES wrote:
> Hi dear R users:
>
> I'm trying the following code to download an information from the web.
>
> url1 <- "http://obieebr.banrep.gov.co/analytics/saw.dll?Go&Path=%2fshared%2fSeries%20Estad%C3%ADsticas_T%2f1.%20Tasa%20de%20Cambio%20Peso%20Colombiano%2f1.1%20TRM%20-%20Disponible%20desde%20el%2027%20de%20noviembre%20de%201991%2f1.1.1.TCM_Serie%20hist%C3%B3rica%20o%20por%20a%C3%B1o&Optio...
2006 Apr 11
0
url_for - results inconsistency ??
Hi all,
I recently noticed something really weird in url_for results
let''s say that we have something like this somewhere in code
<pre>
URL1:<%=url_for( {:action=>''foobar''}.merge({''action''=>''ohmy''}) )%>
URL2:<%=url_for( {''action''=>''ohmy''}.merge({:action=>''foobar''}) )%>
</pre>
and then please consider...
2005 Nov 24
0
Request rewriting - regular expressions
...is one but....
I'm trying to write a rewrite rule that uses the same(tm) syntax as
apache mod_rewrite (or at least it understands it) The following works
by catching ANY url comfigured in the web server and rewriting it with
the correct http status code. The issue is that i need to redirest URL1
to 1st location and URL2 to second location and i'm trying to get my
match syntax correct. Can anyone advise on the reg expression that would
distinguish betweek URL1 and URL2
thanks!
match URL into $ with ^/$
if matched then
set SCRATCH:LOC = http://www.example.com/en/homepage.ht...
2011 May 28
1
newbie xml parsing question
...een able to load the web page I'm
interested with the following code but I'm not sure of the next step to get
the information I'm interested in into R :
library(XML)
url <- "http://www.zillow.com/homes/511 W Lafayette St, Norristown, PA_rb"
doc <-doc <- htmlTreeParse(url1, isURL=TRUE)
doc
I'd like to be able to pull the following information into R
href home details string :
/homedetails/236-Arundel-Ave-Horsham-PA-19044/9933810_zpid/#{scid=hdp-site-map-bubble-address}
value for Zestimate \ Price: $239,000
Beds : 3
Baths: 1.0
Sqft :1630
I noticed all that...
2006 Feb 28
2
Most Popular Searches
Hi,
I have an index where each document contains an untokenized ''url''
field. I would like to query the index for the most popular urls. In
SQL I would do this via a Group By clause. Is there anything in
Ferret that will do something similar?
I found this discussion that proposed a solution involving TermEnums:
2012 Sep 20
3
Line over Boxplot
Very much a rookie at R, and have only recently started using it again so
pardon the simple question. I am trying to produce a box plot from one data
set and then overlay a line plot from another data set. The box plot data
set is made up of 20 sets of 30 data points, or 600 total data points. The
line has only 30 total data points. The box plot is plotting fine, but for
some reason, the line plot
2012 Oct 04
3
R combining vectors into a data frame but without a continuous common variable
Hello,
I have two different files which I'd like to combine to make one data frame
but I've no idea how to do it! The first file has two columns; one is the
date, the following is a binary code for debris flow events. Then my other
file has also two columns; the date and then precipitation data.
The thing is, is that the two date columns don't all contain the same dates.
The binary
2007 Mar 19
0
Warhammer: Dawn Of War Winter Assault Expansion
...1.08.2005 01:49:50 | WXPDataSoundSpeech.sga
355 | 31.08.2005 01:38:22 | WXPDataLoc.sga
5626 | 31.08.2005 01:38:34 | WXPDataKeys.sga
115886416 | 31.08.2005 01:06:06 | WXPDataSharedTexturesFull.sga
21639 | 26.08.2005 22:35:08 | readme.txt12
134 | 29.08.2005 17:15:42 | W40KWA.url1
Viewing cabinet: WinterAssault3.cab
File size | Date Time | Name
-----------+---------------------+-------------
13934334 | 12.08.2005 20:32:08 | wxp_order.avi
412 | 12.08.2005 20:32:08 | wxp_order.lua
15535944 | 12.08.2005 20:32:08 | wxp_disorder.avi
414 | 12.08...
2005 May 15
0
Multiple Questions -- Please Help
...ely
monitor conversations in real time)
4) Screen Pops: when calls come in and are sent to the Queue, I would
like to be able to send a URL to the agent's softphone upon the agent
becoming available. So, when a call comes in for queue 1, I'd like
the Queue application to send http://url1 to the agent when the call
is distributed; when a call comes in for queue 2, I'd like the Queue
application to send http://url2 to the agent.
5) Call conferencing for the agents: all agents will be using soft
phones and they need to be able to conference calls
I have a few questions:
a)...
2004 Aug 06
2
Problem with dual streaming
I've been using liveice to feed an encoded stream to an icecast broadcast
server. Now I want to feed two streams at the same time to the broadcast
server.
To acomplish that I am using a dual soundcard setup in a debian linux
server.
I've setup two different mountpoints in the icecast server wich will receive
the stream and in turn will broadcast the streams to the listeners.
This is, the
2007 Feb 06
3
Warhammer: Dawn Of War Winter Assault Expansion (MSI problem)
...31.08.2005 01:49:50 | WXPDataSoundSpeech.sga
355 | 31.08.2005 01:38:22 | WXPDataLoc.sga
5626 | 31.08.2005 01:38:34 | WXPDataKeys.sga
115886416 | 31.08.2005 01:06:06 | WXPDataSharedTexturesFull.sga
21639 | 26.08.2005 22:35:08 | readme.txt12
134 | 29.08.2005 17:15:42 | W40KWA.url1
Viewing cabinet: WinterAssault3.cab
File size | Date Time | Name
-----------+---------------------+-------------
13934334 | 12.08.2005 20:32:08 | wxp_order.avi
412 | 12.08.2005 20:32:08 | wxp_order.lua
15535944 | 12.08.2005 20:32:08 | wxp_disorder.avi
414 | 12.0...
2007 Jan 11
6
nil object while the required parameter are in the request
...And there is an action in the controller like this
def newlet
render :layout=> false
@product = Product.new
if request.get?
@product.title= params[:title]
@product.description = params[:description]
@product.primary_link = params[:primary_link]
@product.image_url1 = params[:image_url1]
@product.primary_price = params[:primary_price]
end
end
And the url looks like
http://example.com/controllername/newlet?title=aaaa&description=bbbb&primary_link=cccc&image_url=dddd&primary_price=1220
And the corresponding view
<form action="/ad...