dfm is the file format Delphi uses for designing Windows resources like window layouts etc.
Questions tagged [dfm]
91 questions
0
votes
0 answers
How to get rid of special characters "ÿ" in text cleanup in R for STM?
I have been trying to run STM, but the results show a full column with "ÿ" as a topic. My text documents do not have this special character and I am not able to get rid of it. Please advise why the Topic 1, has these characters showing up ?
Below is…

blablabla
- 13
- 2
0
votes
1 answer
Android Dynamic Module Error -2 (MODULE_UNAVAILABLE)
on last Saturday I already fix the issue in my Dynamic module app.
At first I already make an application file that extend SplitCompatApplication. But right now in this afternoon, the error back again, I can't download or install my dynamic module…

Liong
- 1,324
- 12
- 18
0
votes
0 answers
Delphi XE2 and Delphi 11 Alexandria "Error reading IBQ.PrecommittedReads" when loading a datamodule with TIBQuery
I'm porting a project from Delphi XE2 to Delphi 11, while keeping compatibility with the XE2 version. But when I open a data module in the XE2 IDE, an error message is shown: "Error reading IBQ.PrecommittedReads: Property PrecommittedReads doesn't…

malom
- 223
- 2
- 11
0
votes
1 answer
Merging DFMs with quanteda in R
Im quite new to quanteda and R. Is theyr any chance to merge multiple DFMs rowwise?
I do have at least 3 dfms with multiple texts in them and want to merge them into one dfm.
0
votes
1 answer
How do I export a textstat_simil document without losing observations or variables?
I'm new to quanteda and I am having issues exporting my documents. I am comparing two documents, "dfm_latam", with more than 27k observations, and "dfm_cosines", which consists of two corpuses with texts to be compared with each one of the 27k…

ecirtaglip
- 15
- 2
0
votes
1 answer
Error converting to stm after tf-idf weighting
For several dfms, I have no problem converting them to stm/lda/topicmodels format. However, if I weight the dfms with dfm_tfidf() before converting, I get the following error:
Error in convert.dfm(users_dfm, to = "stm") : cannot convert a
non-count…

Michael Bossetta
- 1
- 3
0
votes
1 answer
Delphi how to remove deleted properties from dfm in exe
I have many dfms. I am using delete unwanted properties exe from this site Delphi DFM properties remover, to remove deleted properties which are no longer required. Following code works fine except for some properties like if I want to delete…

User421
- 25
- 8
0
votes
1 answer
Creating document-feature matrix takes very long in R
I am trying to create a document feature matrix with character-level bigrams in R. The last line of my code takes forever to run and never finishes. The other lines take less than a minute max. I am not sure what to do. Any advice would be…

Ana Wilmer
- 63
- 5
0
votes
1 answer
Where can I get the data_corpus_irishbudget2010 used in the examples on the Quanteda site?
I have been doing all the exercises in Tutorials.Quanteda.io, but the section on constructing a DFM uses a corpus called data_corpus_irishbudget2010 doesn't run. This is the code:
toks_irish <- tokens(data_corpus_irishbudget2010, remove_punct =…

treepruner
- 13
- 4
0
votes
0 answers
Building document-feature-matrix (quanteda) with Twitter data takes only a few minutes on one computer, but several hours on another one
I am using quanteda to build document feature matrices from different data sources.
While building dfm with parliamentary speech data and Facebook data takes just a few minutes, it takes more than 7 hours to compile a dfm based on a Twitter…

wldmstr
- 1
- 1
0
votes
1 answer
quanteda: error with textmodel_wordscores: Error in t(as(x, "dgCMatrix"))
after the new quanteda update I have some problems with my code.
I'm using the MigParl data to generate a dfm from parliamentary speeches.
(1) When switching to quanteda for a wordscores analysis I lose my rownames when transforming the dfm from…

Dana S.
- 63
- 7
0
votes
0 answers
How to search for a missing property in a Delphi DFM component declaration?
I'm trying to get all occurrencies of the TcxRadioGroup class which have not a value for the Caption property in Delphi DFM files.
I have to do this in a big groupproject with thousands of forms. For this reason I'm looking for a solution which can…

Fabrizio
- 7,603
- 6
- 44
- 104
0
votes
1 answer
Delphi 10.3.2 Build Fails to Find DFM files
I'm using parallels VM and recently had my code in Dropbox contained within the VM. Dropbox was quite problematic in that it is really slow if you have a lot of files. Since Parallels happily shares folders from the HOST, and one of those folders is…

Kevin Black
- 119
- 1
- 10
0
votes
2 answers
DFM not found after reorganisation
I have a Delphi 7 project with this structure:
.dpr
foo.pas
*.pas
*.dfm
Bin/
debug/
Most of the source code, except for one file, is shared between other projects (although this is not relevant), so I did some reorganisation that looks like…

Dani M
- 1,173
- 1
- 15
- 43
0
votes
1 answer
How to get the default value of a property?
Components often have long lists of properties with usable default values:
class PACKAGE TMySpecialComboBox : public TCustomComboBox
{
public:
__fastcall TMySpecialComboBox(TComponent *Owner);
// ...
private:
// ...
bool fetch_all_;
bool…

manlio
- 18,345
- 14
- 76
- 126