similar to: Asterisk feature list: spreadsheet

Displaying 20 results from an estimated 5000 matches similar to: "Asterisk feature list: spreadsheet"

2009 Jul 15
4
DEVICE_STATE() and Asterisk 1.6.0.10
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I must be missing something here but I can't figure out why I can't get DEVICE_STATE() to give me anything other than "NOT_INUSE". I have two extensions: 6666 and 6668. I used 6668 to make a call to yet another phone, so I know that it's busy. I then use 6666 to call 6668 and in the dialplan have a noop to see what
2004 Jan 21
4
What technology could my phone company be using?
I live in New Brunswick Canada. The phone company is Aliant. When you set up business service here, you can go with either analog or digital lines. This isn't a T1 or ISDN. They are talking individual lines direct to handsets that they provide. They offer the digital option with even very small ( 2 - 4) number of lines. What technology could this be? Is there any way to connect such a
2003 Nov 17
2
VOIP phonesets vs. cheap Analog touch-tone sets with Asterisk
Hello-- I've been asked an interesting question, and I'm too ignorant to answer it authoritatively (yet). Can anyone help me? Question: If I'm going to implement a somewhat small (10-80) phone system, and I have a choice of using VOIP phoneset (like SNOM or Grandstream or Cisco, etc), vs. cheap analog touch-tone phones, exactly what features will I kiss goodbye if I use the cheap
2005 Aug 10
3
Hard deskphone via wifi?
Has anyone here ever tried using a wifi bridge to place a deskset in someplace where there was no LAN drop? If so what hardware did you use and was it succesful? Michael -- Michael Graves mgraves@pixelpower.com Sr. Product Specialist www.pixelpower.com Pixel Power Inc. mgraves@mstvp.com o713-861-4005
2011 Jun 08
3
Spreadsheet in Rails
Hi, Please help to create a spreadsheet view in rails application. Need to display the cell values from DB with manipulating option. Please specify gems/plugin if available. Thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2009 Feb 03
5
reading .odf spreadsheet into R
I have searched the archives and I did not find the answer to my question. Is there a way to read in a .odf spreadsheet without modification to a .csv file. I am analyzing my classes scores on their first exam, and would like to read the grade book in without converting it to .csv. thanks -- Stephen Sefick Let's not spend our time and resources thinking about things that are so little or
2002 Apr 26
7
spreadsheet data import
Hi colleages! I want to import data from ms-excel and other spreadsheet formats (lotus, etc). Does exist any way to do it within R? The main problem is that many spreadsheet data use comma as decimal separator and not the point as needed in R (and many software for Linux), so importing data first as a tab separated values does not solve this problem. Thanks, Tom?s Revilla
2015 Aug 21
3
Would a spreadsheet be a good project using LLVM?
I am thinking about writing a new open source spreadsheet application since I think the spreadsheet applications out there (Microsoft Excel, LibreOffice Calc, etc.) do not have some features that I would really like to use. I would like the spreadsheet to recalculate very fast and wondered if it would make sense to use LLVM to calculate the cell values quickly. Each cell of a spreadsheet
2007 Sep 13
2
Export Step Function Coefficients to Spreadsheet or Text File
Hello, After I use the lm() function to perform a multiple linear regression, and then use the step function to eliminate variables that predict the weakest, I need to export the final equation to a spreadsheet or a text file. Below is some sample code. In the end I want to export the coefficients to a spreadsheet. Will you please direct me to the appropriate syntax? Thanks for your time, --Eric
2008 Mar 20
2
Importing an Excel spreadsheet
Hello I am trying to import an *.xls spreadsheet into R. I am doing this as follows: > read.table(file("A5_DL.xls")) But obtain the error: Error in type.convert(data[[i]], as.is = as.is[i], dec = dec, na.strings = character(0)) : invalid multibyte string at '?????' So I copied it all over to a text document and tried to import that, thus: >
2015 Aug 21
3
Would a spreadsheet be a good project using LLVM?
Mats, Thanks for your feedback. I guess I should elaborate on one of the features I would like to implement. In today's spreadsheets if you want to crunch a lot of data, you usually put the data in rows and put expressions in cells to the right of the data and repeat those cells for every row of the data. I would like to create a spreadsheet system that can process the same quantity of
2023 Dec 29
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hello I am trying to work through a problem, but feel like I've gone down a rabbit hole. I'd very much appreciate any help. The task: I have several directories of multiple (some directories, up to 2,500+) *.docx files (newspaper articles downloaded from Lexis+) that I want to iterate through to append to a spreadsheet only those articles that satisfy a condition (i.e., a specific
2011 Jan 12
1
Metafor vs Meta vs Spreadsheet: wrong numbers
Hello, I experimented the Metafor and Meta packages in the scope of replacing Excel for meta-analysis. I performed the first working example provided in Michael Borenstein's book "Introduction to Meta-Analysis" with Excel, Metafor and Meta. The numbers given by my spreadsheet, which I validated from Borenstein's book, conrespond quite closely to those given by Meta, but
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
I would also look at https://pandoc.org perhaps which can export a number of formats... And for spreadsheets https://github.com/jqnatividad/qsv is my goto weapon. Can also read and write XLSX and others. A sample document or two would always be helpful... el On 29/12/2023 21:01, CALUM POLWART wrote: > It sounded like he looked at officeR but I would agree > > content <-
2010 Feb 23
2
Help on Spreadsheet::Excel
Dear all, For the export to excel functionality i have used Spreadsheet::Excel gem it works fine. i would like to design the excel sheet with html ,css.(i want to give color and height and width to each cell of the excel sheet...) I have goggled for this but nothing saved me... please u people suggest me any sample code or links that i can try with... Thank you for your time to view my query
2005 Jan 03
3
spreadsheet addiction
There's a new page on the Burns Statistics website http://www.burns-stat.com/pages/Tutor/spreadsheet_addiction.html that looks at spreadsheets from a quality assurance perspective. It presents R as a suitable alternative to spreadsheets. Also there are several specific problems with Excel that are highlighted, including the status of statistical functionality in Excel. Patrick Burns Burns
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
It sounded like he looked at officeR but I would agree content <- officer::docx_summary("filename.docx") Would get the text content into an object called content. That object is a data.frame so you can then manipulate it. To be more specific, we might need an example of the DF You can loop this easily with a for statement although there are people who prefer a non-for approach to
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
checkout the 'officer' package Thanks Jim Holtman *Data Munger Guru* *What is the problem that you are trying to solve?Tell me what you want to do, not how you want to do it.* On Fri, Dec 29, 2023 at 10:14?AM Andy <phaedrusv at gmail.com> wrote: > Hello > > I am trying to work through a problem, but feel like I've gone down a > rabbit hole. I'd very much
2004 Jan 17
9
New sounds also now in CVS
The soundfiles I submitted earlier today have been cleaned up, and added to the Digium CVS server in a more formal manner. Also, some of the really bad formatting in my .txt description file has been rectified. All of the sounds on my website are now on the Digium site, and I will be submitting future changes via patches to Digium for additional sounds. Ideas welcome for more text; I may
2004 Jan 11
24
More words for Allison
Here's the latest batch of words to get shipped out to Allison Smith. Please submit reasonably small changes to me by tomorrow 10:00 AM Eastern time, and I'll add them. As usual, donations to what will be a ~$110 USD expense would be appreciated, as I am paying for this round out of my pocket. Please send to paypal address "jtodd@loligo.com". I did not include all