Displaying 20 results from an estimated 1000 matches similar to: "need help"
2012 Jun 15
3
spelling correction using R
hello
I want a code which can correct the spelling mistakes as well as
grammatical mistakes in the sentences...that is if I am writing following
sentence:
I want too meet my frnd bt due to hectic shcedule I cant
I want output in following way:
I want to met my friend but due to hectic schedule I can't.
Thanks in advance
Shilpa Rai
MSc
IIT Bomaby
--
View this message in context:
2012 Jun 13
2
separate the sentence after finding a particular word
hello,
I want to know ..how we can separate the sentence after finding a particular
word...
for example
I love to watch movies of Hollywood but should not be romantic...I want to
join you school but due to bad financial condition I cant..
I want output in following format
I love to watch movies of Hollywood
should not be romantic
I want to join you school
due to bad financial condition I cant
2012 Jun 13
1
regarding the function WebCorpus
hello,
I have a question regarding the function WebCorpus..When I am using this
function its showing error: couldnt find the function...I have downloaded
the tm package...Can you help me in this regard? Also I want to know how we
can data/information about a product or topic from google,facebook etc using
R...I have find a command
corpus <- WebCorpus(GoogleFinanceSource("AAPL"))
but
2012 Jun 15
1
help in sentDetect() fuction
hello,
I am using the following code
>s<-"I am very happy, excited, and optimistic.I am very scared, annoyed, and
irritated.Iraq?s political crisis entered its second week one step closer to
the potential.dissolution of the government, with a call for elections by a
vital coalition partner and a suicide attack that extended the spate of
violence. that has followed the withdrawal.of
2012 Jun 14
1
how to export output
hello,
I am using following command
classify_polarity(documents,algorithm="bayes",verbose=TRUE)
output is:
[1] "DOCUMENT 1"
[1] "WORD: excited CAT: positive POL: strongsubj SCORE: 8.44419229853175"
[1] "WORD: happy CAT: positive POL: strongsubj SCORE: 8.44419229853175"
[1] "WORD: optimistic CAT: positive POL: weaksubj SCORE: 7.7510451179718"
[1]
2012 Aug 30
2
Help on Plot Title where text is "mixed" with numerical carachters
Dear All,
I have the following code set up:
x <-2000
y <-8
z <-3
I would need to use these numbers to show up in my plot title "mixed" with text. The x,y,z numbers would need to change, the text would not. So my title should look like this
"x txt1 y txt2 z txt3"
so if:
txt1=hours
txt2=minutes
txt3=seconds
then my title of the plot should read: 2000 hours
2014 Jul 22
2
Ayuda Error in `colnames<-`(`*tmp*`, value = c(
Buenas tardes, grupo.
Estoy tratando de hacer la comparación de dos archivos de una misma
organización para encontrar las diferencias entre su informe del tema
edl año 2005 y el del año 2013:
Todos los comandos van bien, a exepción del último "colnames", como se
ve en la siguiente secuencia:
> pdf1<-"./PLAN de INSPECCIONES/05_seguridad_ciudadana.pdf"
>
2008 Aug 01
1
Properly Parsing Pre-Superscripts & Displaying Them With grid.text
Hi all... I?m making a chart dealing with frequencies of isotopes of various
elements. For instance, I'd like the following text to appear on a chart
with the "35" and "37" as superscripts:
Based upon:
35Cl: 75%
37Cl: 25%
I am having problems properly parsing the superscript that preceeds the
"Cl", since there is no character ahead of the superscript (I saw
2013 Aug 25
1
Capturing the whole output using R
Hi,
May be this helps:
#Creating some dummy data.?
set.seed(24)
lst1<-lapply(1:8,function(x) ts(sample(1:25,20,replace=TRUE)))
set.seed(49)
lst2<-lapply(1:8,function(x) ts(sample(1:45,20,replace=TRUE)))
??Find_Max_CCF()
#No vignettes or demos or help files found with alias or concept or
#title matching ?Find_Max_CCF? using regular expression matching.
Found a function with the same
2008 Jan 14
4
Focus on TextCtrl
Hello.
I have a problem with set focus on a TextCtrl in wxRuby.
I must do something like
Login TextCtrl and set focus on a next TextCtrl by clicking Tab key.
--
Posted via http://www.ruby-forum.com/.
2006 Jan 29
1
is it ok to call speex_encode_int after speex_bits_write?
I'm reliably getting a corrupt stream when I do a certain encoding and
decoding test.
I've pegged it down to this: encoding some frames, calling
speex_bits_write() and then encoding another frame produces a corrupt
stream.
My question is, is this a speex bug or incorrect API use?
I can provide a test case (currently in python, will translate to c if
needed).
Thanks,
Micky
2005 Dec 07
1
Navigation
Greetings,
I appreciate the help from here as I seem to be asking the noob
questions a lot, but what is a good way to deal with navigation pulled
from a database?
I have this in my view:
<% @nav_buttons.each do |nav_button| %>
<li><a href="#" class="nav"><%=h nav_button.name %></a></li>
<% end %>
this in my controller
def
2011 Sep 26
1
Files being modified in /bin/
For the binary experts.
I have a situation here. Something hideously but continuously is modifying
the /bin/ executables as common as coreutils and net-tools.
I can verify that from md5sum. First thing I checked was 'ls' and it has a
checksum mismatch. So I removed it and reinstalled it. Then I moved the file
somewhere else to cross bisect it.
I did a hexdump on original ls file and the
2016 Nov 18
3
Linking LLVM IR with standard library
Hi,
I have a LLVM IR file generated for a different source language (Not C). I
have added a rand() function in it to generate random numbers.
I compiled the .ll file to .o using clang. However, when I execute the .o
file all generated numbers are zeros.
How should I link the .ll file with the standard library for the clang to
generate the random numbers?
Thanks
-Shilpa
-------------- next
2012 Sep 24
5
Memory usage in R grows considerably while calculating word frequencies
I am working with some large text files (up to 16 GBytes). I am interested
in extracting the words and counting each time each word appears in the
text. I have written a very simple R program by following some suggestions
and examples I found online.
If my input file is 1 GByte, I see that R uses up to 11 GBytes of memory
when executing the program on
a 64-bit system running CentOS 6.3. Why is
2011 Mar 21
3
Replacing Period in String
Dear R Users,
I am working with gsub for the first time. I am trying to remove some
characters from a string. I have hit the problem where the period is the
shorthand for 'everything' in the R language when what I want to remove is
the actual periods. In the example below, I simply want to remove the
periods as I have removed the comma, but instead the complete string is
wiped out. I
2013 Aug 24
1
Divide the data into sub data on a particular condition
Hi,
Use ?split()
#dat1 is the dataset:
lst1<- split(dat1,dat1$BaseProd)
lst1
#$`2231`
?# BaseProd? CF OSA
#1???? 2231 0.5 0.7
#2???? 2231 0.8 0.6
#3???? 2231 0.4 0.8
#
#$`2232`
?# BaseProd CF OSA
#4???? 2232? 1?? 2
#5???? 2232? 3?? 1
#
#$`2233`
?# BaseProd? CF OSA
#6???? 2233 0.9 0.5
#7???? 2233 0.7 0.5
#8???? 2233 4.0 5.0
#9???? 2233 5.0 7.0
lst1[[1]]
#? BaseProd? CF OSA
#1???? 2231 0.5 0.7
2010 May 05
2
readLines with space-delimiter?
Hi,
I am reading a large space-delimited text file into R (41 columns and many
rows) and need to do run each row's values through another R object and then
write to another text file. So, far using readLines and writeLines seems to
be the best bet. I've gotten the data exchange working except each row is
read in as one 'chunk', meaning the row has all values between two quotes
2008 Dec 02
0
RubyPeople - I am after a Ruby on Rails Developer for the UK
Ruby-People.com - Due to recent relocation an opportunity has arisen
for 2 creative and highly skilled Ruby on Rails Developers with at
least 1 year commercial experience to join our client - a leading
Internet services and hosting company.
You will be joining a small focused team and will be developing
customer facing and internal systems for multiple brands. You will be
working with Ruby on
2012 Dec 19
2
read.csv reads more rows than indicated by wc -l
When I have a csv file that is more than 6 lines long, not including
the header, and one of the fields is blank for the last few lines, and
there is an extra comma on of the lines with the blank field,
read.csv() makes creates an extra line.
I attached an example file; I'll also paste the contents here:
A,apple
A,orange
A,orange
A,orange
A,orange
A,,,
A,,
-----
wc -l reports that this file